Home | History | Annotate | Download | only in libGLESv2

Lines Matching refs:clientVersion

48 Context::Context(egl::Display *display, const Context *shareContext, EGLint clientVersion, const egl::Config *config)
49 : egl::Context(display), clientVersion(clientVersion), config(config)
319 return clientVersion;
1606 if(clientVersion >= 3)
1613 if(clientVersion >= 3)
1620 if(clientVersion >= 3)
1627 if(clientVersion >= 3)
1634 if(clientVersion >= 3)
1642 if(clientVersion >= 3)
2198 if(clientVersion >= 3)
2218 *params = clientVersion;
3332 if(!IsValidReadPixelsFormatType(framebuffer, format, type, clientVersion))
4151 if((clientVersion < 3) && (readRenderbuffer->getSamples() > 0) && (readFormat != drawFormat))
4484 if(clientVersion >= 3)
4507 if(clientVersion >= 3)
4536 NO_SANITIZE_FUNCTION egl::Context *es2CreateContext(egl::Display *display, const egl::Context *shareContext, int clientVersion, const egl::Config *config)
4538 ASSERT(!shareContext || shareContext->getClientVersion() == clientVersion); // Should be checked by eglCreateContext
4539 return new es2::Context(display, static_cast<const es2::Context*>(shareContext), clientVersion, config);