/external/chromium_org/gpu/config/ |
gpu_info_collector_unittest.cc | 41 const char* gl_extensions = local 55 const char* gl_extensions = local 69 const char* gl_extensions = local 83 test_values_.gl_extensions = gl_extensions; 86 EXPECT_CALL(*gl_, GetString(GL_EXTENSIONS)) 88 gl_extensions))); 181 EXPECT_EQ(test_values_.gl_extensions, 182 gpu_info.gl_extensions);
|
gpu_info_unittest.cc | 27 EXPECT_EQ(gpu_info.gl_extensions, "");
|
gpu_info_collector.cc | 100 gpu_info->gl_extensions = GetGLString(GL_EXTENSIONS); 112 gpu_info->gl_extensions.find("GL_EXT_robustness") != std::string::npos || 113 gpu_info->gl_extensions.find("GL_ARB_robustness") != std::string::npos; 137 basic_gpu_info->gl_extensions = context_gpu_info.gl_extensions;
|
gpu_info.cc | 65 std::string gl_extensions; member in struct:gpu::GPUInfoKnownFields 114 enumerator->AddString("glExtensions", gl_extensions);
|
gpu_info.h | 116 // The GL_EXTENSIONS string. "" if we are not using OpenGL. 117 std::string gl_extensions; member in struct:gpu::GPUInfo
|
gpu_driver_bug_list_json.cc | 256 "gl_extensions": { 438 "gl_extensions": { 567 "gl_extensions": {
|
/frameworks/native/opengl/libs/EGL/ |
egl_object.cpp | 103 * Here we cache the GL_EXTENSIONS string for this context and we 107 if (gl_extensions.isEmpty()) { 108 // call the implementation's glGetString(GL_EXTENSIONS) 109 const char* exts = (const char *)gEGLImpl.hooks[version]->gl.glGetString(GL_EXTENSIONS); 110 gl_extensions.setTo(exts); 111 if (gl_extensions.find("GL_EXT_debug_marker") < 0) { 113 temp.append(gl_extensions); 114 gl_extensions.setTo(temp);
|
/cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/ |
GLESSurfaceView.java | 64 extensions = GLES20.glGetString(GLES20.GL_EXTENSIONS); 68 extensions = GLES30.glGetString(GLES30.GL_EXTENSIONS); 72 extensions = gl.glGetString(GL10.GL_EXTENSIONS);
|
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/ |
glcpp.h | 187 struct gl_extensions; 190 glcpp_parser_create (const struct gl_extensions *extensions, int api); 200 const struct gl_extensions *extensions, int api);
|
/external/mesa3d/src/glsl/glcpp/ |
glcpp.h | 187 struct gl_extensions; 190 glcpp_parser_create (const struct gl_extensions *extensions, int api); 200 const struct gl_extensions *extensions, int api);
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
gpu_info_unittest.py | 28 'gl_extensions': 'j', 52 self.assertEquals(info.aux_attributes['gl_extensions'], 'j')
|
gpu_info.py | 50 gl_extensions (string)
|
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/ |
atlantis.c | 220 case GL_EXTENSIONS: 230 StrMode = GL_EXTENSIONS; 342 case GL_EXTENSIONS: 345 DrawStr(glGetString(GL_EXTENSIONS)); 390 StrMode = GL_EXTENSIONS; 446 glutAddMenuEntry("GL_EXTENSIONS", 4);
|
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/ |
atlantis.c | 220 case GL_EXTENSIONS: 230 StrMode = GL_EXTENSIONS; 342 case GL_EXTENSIONS: 345 DrawStr(glGetString(GL_EXTENSIONS)); 390 StrMode = GL_EXTENSIONS; 446 glutAddMenuEntry("GL_EXTENSIONS", 4);
|
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/ |
atlantis.c | 220 case GL_EXTENSIONS: 230 StrMode = GL_EXTENSIONS; 342 case GL_EXTENSIONS: 345 DrawStr(glGetString(GL_EXTENSIONS)); 390 StrMode = GL_EXTENSIONS; 446 glutAddMenuEntry("GL_EXTENSIONS", 4);
|
/frameworks/base/libs/hwui/ |
Extensions.cpp | 55 findExtensions((const char*) glGetString(GL_EXTENSIONS), mGlExtensionList); 130 ALOGD("Supported GL extensions:\n%s", (const char*) glGetString(GL_EXTENSIONS));
|
/external/chromium_org/gpu/GLES2/extensions/CHROMIUM/ |
CHROMIUM_request_extension.txt | 36 GetString(GL_EXTENSIONS) in order to find out if the extension was actually
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
getstring.c | 128 case GL_EXTENSIONS: 130 _mesa_error(ctx, GL_INVALID_ENUM, "glGetString(GL_EXTENSIONS)"); 175 case GL_EXTENSIONS:
|
extensions.c | 58 /** Offset (in bytes) of the corresponding member in struct gl_extensions. */ 71 * Given a member \c x of struct gl_extensions, return offset of 74 #define o(x) offsetof(struct gl_extensions, x) 332 * gl_extensions and return that member's offset (in bytes). If the name is 336 * \return Offset of member in struct gl_extensions. [all...] |
/external/mesa3d/src/mesa/main/ |
getstring.c | 128 case GL_EXTENSIONS: 130 _mesa_error(ctx, GL_INVALID_ENUM, "glGetString(GL_EXTENSIONS)"); 175 case GL_EXTENSIONS:
|
extensions.c | 58 /** Offset (in bytes) of the corresponding member in struct gl_extensions. */ 71 * Given a member \c x of struct gl_extensions, return offset of 74 #define o(x) offsetof(struct gl_extensions, x) 332 * gl_extensions and return that member's offset (in bytes). If the name is 336 * \return Offset of member in struct gl_extensions. [all...] |
/external/chromium_org/gpu/command_buffer/service/ |
feature_info.h | 129 // The extensions string returned by glGetString(GL_EXTENSIONS);
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
glsl_parser_extras.h | 211 const struct gl_extensions *extensions; 300 const struct gl_extensions *extensions, int api);
|
/external/mesa3d/src/glsl/ |
glsl_parser_extras.h | 211 const struct gl_extensions *extensions; 300 const struct gl_extensions *extensions, int api);
|
/development/ndk/platforms/android-5/samples/hello-gl2/jni/ |
gl_code.cpp | 128 printGLString("Extensions", GL_EXTENSIONS);
|