Esempio n. 1
0
void RendererGL::applyNativeWorkarounds(gl::Workarounds *workarounds) const
{
    ensureCapsInitialized();
    nativegl_gl::ApplyWorkarounds(mFunctions, workarounds);
}
Esempio n. 2
0
const gl::Limitations &RendererGL::getNativeLimitations() const
{
    ensureCapsInitialized();
    return mNativeLimitations;
}
Esempio n. 3
0
MultiviewImplementationTypeGL RendererGL::getMultiviewImplementationType() const
{
    ensureCapsInitialized();
    return mMultiviewImplementationType;
}
Esempio n. 4
0
const gl::TextureCapsMap &RendererGL::getNativeTextureCaps() const
{
    ensureCapsInitialized();
    return mNativeTextureCaps;
}
Esempio n. 5
0
const gl::Extensions &RendererGL::getNativeExtensions() const
{
    ensureCapsInitialized();
    return mNativeExtensions;
}
Esempio n. 6
0
const gl::Caps &RendererGL::getNativeCaps() const
{
    ensureCapsInitialized();
    return mNativeCaps;
}
Esempio n. 7
0
const gl::Limitations &Renderer::getRendererLimitations() const
{
    ensureCapsInitialized();

    return mLimitations;
}
Esempio n. 8
0
const gl::Extensions &Renderer::getRendererExtensions() const
{
    ensureCapsInitialized();

    return mExtensions;
}
Esempio n. 9
0
const gl::TextureCapsMap &Renderer::getRendererTextureCaps() const
{
    ensureCapsInitialized();

    return mTextureCaps;
}
Esempio n. 10
0
const gl::Caps &Renderer::getRendererCaps() const
{
    ensureCapsInitialized();

    return mCaps;
}