HomeSort by relevance Sort by last modified time
    Searched refs:glVersion (Results 1 - 10 of 10) sorted by null

  /cts/tests/src/android/opengl/cts/
GLSurfaceViewStubActivity.java 76 public static void setGlVersion(int glVersion) {
78 mGlVersion = glVersion;
  /device/generic/goldfish/opengl/system/renderControl_enc/
renderControl_entry.cpp 17 uint32_t rcCreateContext(uint32_t config, uint32_t share, uint32_t glVersion);
91 uint32_t rcCreateContext(uint32_t config, uint32_t share, uint32_t glVersion)
94 return ctx->rcCreateContext(ctx, config, share, glVersion);
renderControl_enc.h 33 uint32_t rcCreateContext_enc(void *self , uint32_t config, uint32_t share, uint32_t glVersion);
renderControl_enc.cpp 193 uint32_t rcCreateContext_enc(void *self , uint32_t config, uint32_t share, uint32_t glVersion)
207 memcpy(ptr, &glVersion, 4); ptr += 4;
  /sdk/emulator/opengl/host/libs/libOpenglRender/
RenderControl.cpp 165 uint32_t share, uint32_t glVersion)
172 HandleType ret = fb->createRenderContext(config, share, glVersion == 2);
  /external/skia/src/gpu/gl/
GrGpuGL.h 34 GrGLVersion glVersion() const { return fGLContextInfo.version(); }
GrGpuGL.cpp 232 caps->fTwoSidedStencilSupport = (this->glVersion() >= GR_GL_VER(2,0));
234 caps->fStencilWrapOpsSupport = (this->glVersion() >= GR_GL_VER(1,4)) ||
250 if (this->glVersion() >= GR_GL_VER(2,0) ||
276 this->glVersion() >= GR_GL_VER(3,3) ||
281 this->glVersion() >= GR_GL_VER(3,2) &&
319 if (this->glVersion() >= GR_GL_VER(3,0) ||
    [all...]
  /frameworks/base/core/java/android/view/
HardwareRenderer.java 571 * @param glVersion The version of OpenGL to use (1 for OpenGL 1, 11 for OpenGL 1.1, etc.)
576 static HardwareRenderer createGlRenderer(int glVersion, boolean translucent) {
577 switch (glVersion) {
581 throw new IllegalArgumentException("Unknown GL version: " + glVersion);
822 GlRenderer(int glVersion, boolean translucent) {
823 mGlVersion = glVersion;
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraGLTest.java 307 int glVersion = getDetectedVersion();
308 assertTrue(glVersion > 0);
309 if (glVersion != 2) {
    [all...]
  /sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/
ConfigGenerator.java 560 Element glVersion = doc.createElement(PREFIX + NODE_GL_VERSION);
561 software.appendChild(glVersion);
572 glVersion.appendChild(doc.createTextNode(glVersionString));

Completed in 430 milliseconds