Searched refs:clientVersion (Results 1 - 18 of 18) sorted by relevance

/external/swiftshader/src/OpenGL/libGLESv2/
H A Dutilities.h45 bool IsCompressed(GLint intenalformat, GLint clientVersion);
48 GLsizei width, GLsizei height, GLenum format, GLenum type, Texture *texture, GLint clientVersion);
50 GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, Texture *texture, GLint clientVersion);
52 bool IsValidReadPixelsFormatType(const Framebuffer *framebuffer, GLenum format, GLenum type, GLint clientVersion);
58 GLenum ValidateTextureFormatType(GLenum format, GLenum type, GLint internalformat, GLenum target, GLint clientVersion);
61 bool IsColorRenderable(GLint internalformat, GLint clientVersion);
62 bool IsDepthRenderable(GLint internalformat, GLint clientVersion);
63 bool IsStencilRenderable(GLint internalformat, GLint clientVersion);
64 bool IsMipmappable(GLint internalformat, GLint clientVersion);
H A DlibGLESv2.cpp186 GLint clientVersion = egl::getClientVersion(); local
197 if(clientVersion >= 3)
204 if(clientVersion >= 3)
211 if(clientVersion >= 3)
218 if(clientVersion >= 3)
225 if(clientVersion >= 3)
232 if(clientVersion >= 3)
305 GLint clientVersion = context->getClientVersion(); local
319 if(clientVersion < 3)
401 GLint clientVersion local
521 GLint clientVersion = egl::getClientVersion(); local
1946 GLint clientVersion = context->getClientVersion(); local
2022 GLint clientVersion = context->getClientVersion(); local
2208 GLint clientVersion = context->getClientVersion(); local
2573 GLint clientVersion = context->getClientVersion(); local
2728 GLint clientVersion = context->getClientVersion(); local
3110 GLint clientVersion = egl::getClientVersion(); local
3524 GLint clientVersion = context->getClientVersion(); local
3680 GLint clientVersion = context->getClientVersion(); local
4027 GLint clientVersion = context->getClientVersion(); local
4085 GLint clientVersion = context->getClientVersion(); local
4213 GLint clientVersion = context->getClientVersion(); local
4446 GLint clientVersion = context->getClientVersion(); local
4651 GLint clientVersion = context->getClientVersion(); local
4989 GLint clientVersion = context->getClientVersion(); local
5089 GLint clientVersion = context->getClientVersion(); local
5241 GLint clientVersion = context->getClientVersion(); local
6103 GLint clientVersion = egl::getClientVersion(); local
6577 GLint clientVersion = context->getClientVersion(); local
[all...]
H A Dutilities.cpp326 bool IsCompressed(GLint internalformat, GLint clientVersion) argument
346 return (clientVersion >= 3);
375 return ASTC_SUPPORT && (clientVersion >= 3);
458 GLsizei width, GLsizei height, GLenum format, GLenum type, Texture *texture, GLint clientVersion)
476 GLenum validationError = ValidateTextureFormatType(format, type, sizedInternalFormat, target, clientVersion);
502 GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, Texture *texture, GLint clientVersion)
518 GLenum validationError = ValidateTextureFormatType(format, type, sizedInternalFormat, target, clientVersion);
627 bool IsValidReadPixelsFormatType(const Framebuffer *framebuffer, GLenum format, GLenum type, GLint clientVersion) argument
689 ASSERT(clientVersion >= 3);
698 ASSERT(clientVersion >
457 ValidateSubImageParams(bool compressed, bool copy, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, Texture *texture, GLint clientVersion) argument
501 ValidateSubImageParams(bool compressed, bool copy, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, Texture *texture, GLint clientVersion) argument
786 ValidateTextureFormatType(GLenum format, GLenum type, GLint internalformat, GLenum target, GLint clientVersion) argument
1168 IsColorRenderable(GLint internalformat, GLint clientVersion) argument
1245 IsDepthRenderable(GLint internalformat, GLint clientVersion) argument
1316 IsStencilRenderable(GLint internalformat, GLint clientVersion) argument
1387 IsMipmappable(GLint internalformat, GLint clientVersion) argument
[all...]
H A DShader.cpp235 int clientVersion = es2::getContext()->getClientVersion(); local
237 if(shaderVersion >= 300 && clientVersion < 3)
H A DContext.cpp48 Context::Context(egl::Display *display, const Context *shareContext, EGLint clientVersion, const egl::Config *config) argument
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 >
4536 es2CreateContext(egl::Display *display, const egl::Context *shareContext, int clientVersion, const egl::Config *config) argument
[all...]
H A DContext.h433 Context(egl::Display *display, const Context *shareContext, EGLint clientVersion, const egl::Config *config);
728 const EGLint clientVersion; member in class:es2::Context
H A DlibGLESv2.hpp246 egl::Context *(*es2CreateContext)(egl::Display *display, const egl::Context *shareContext, int clientVersion, const egl::Config *config);
H A Dentry_points.cpp1211 egl::Context *es2CreateContext(egl::Display *display, const egl::Context *shareContext, int clientVersion, const egl::Config *config);
/external/conscrypt/testing/src/main/java/libcore/tlswire/handshake/
H A DClientHello.java33 public TlsProtocolVersion clientVersion; field in class:ClientHello
42 clientVersion = TlsProtocolVersion.read(in);
93 return "ClientHello{client version: " + clientVersion + ", random: "
/external/tpm2/
H A DTcpServer.c461 int clientVersion; local
524 ok = ReadBytes(s, (char*)&clientVersion, 4);
527 if( clientVersion == 0 )
/external/swiftshader/src/OpenGL/libEGL/
H A DDisplay.h64 EGLContext createContext(EGLConfig configHandle, const Context *shareContext, EGLint clientVersion);
H A DDisplay.cpp565 EGLContext Display::createContext(EGLConfig configHandle, const egl::Context *shareContext, EGLint clientVersion) argument
570 if(clientVersion == 1 && config->mRenderableType & EGL_OPENGL_ES_BIT)
577 else if((clientVersion == 2 && config->mRenderableType & EGL_OPENGL_ES2_BIT) ||
578 (clientVersion == 3 && config->mRenderableType & EGL_OPENGL_ES3_BIT))
582 context = libGLESv2->es2CreateContext(this, shareContext, clientVersion, config);
/external/deqp/modules/egl/
H A DteglQueryContextTests.cpp265 const EGLint clientVersion = getContextAttrib(display, context, EGL_CONTEXT_CLIENT_VERSION); local
268 if (clientVersion < getMinClientMajorVersion(config.apiBits))
/external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/
H A DSSLSocketTest.java2157 assertEquals(TlsProtocolVersion.TLSv1_2, clientHello.clientVersion);
/external/robolectric/v1/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/guice/extensions/struts2/lib/
H A Dant-1.6.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 673 milliseconds