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

  /frameworks/native/opengl/libs/EGL/
egl_object.cpp 109 * Here we cache the GL_EXTENSIONS string for this context and we
113 if (gl_extensions.empty()) {
114 // call the implementation's glGetString(GL_EXTENSIONS)
115 const char* exts = (const char *)gEGLImpl.hooks[version]->gl.glGetString(GL_EXTENSIONS);
116 gl_extensions = exts;
117 if (gl_extensions.find("GL_EXT_debug_marker") == std::string::npos) {
118 gl_extensions.insert(0, "GL_EXT_debug_marker ");
124 ss << gl_extensions; local
egl.cpp 126 if (name != GL_EXTENSIONS)
129 return (const GLubyte *)c->gl_extensions.c_str();
144 if (name != GL_EXTENSIONS)
egl_object.h 173 std::string gl_extensions; member in class:android::egl_context_t
  /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);
pp.c 154 const struct gl_extensions *extensions, int api)
glcpp-parse.y 32 #include "main/core.h" /* for struct gl_extensions */
1119 glcpp_parser_create (const struct gl_extensions *extensions, int api)
    [all...]
  /external/mesa3d/src/glsl/
glsl_parser_extras.h 211 const struct gl_extensions *extensions;
300 const struct gl_extensions *extensions, int api);
glsl_parser_extras.cpp 225 * Flag in the gl_extensions struct indicating whether this
227 * &gl_extensions::dummy_true if supported by all drivers.
229 * Note: the type (GLboolean gl_extensions::*) is a "pointer to
239 const GLboolean gl_extensions::* supported_flag;
265 { "GL_" #NAME, VS, GS, FS, GL, ES, &gl_extensions::SUPPORTED_FLAG, \
  /hardware/intel/common/libva/va/glx/
va_glx_impl.c 195 const char *gl_extensions; local
198 gl_extensions = (const char *)glGetString(GL_EXTENSIONS);
199 if (!check_extension("GL_ARB_texture_non_power_of_two", gl_extensions))
210 const char *gl_extensions; local
212 gl_extensions = (const char *)glGetString(GL_EXTENSIONS);
213 if (check_extension("GL_ARB_framebuffer_object", gl_extensions))
215 if (check_extension("GL_EXT_framebuffer_object", gl_extensions))
  /external/drm_hwcomposer/
glworker.cpp 452 const char *gl_extensions; local
521 gl_extensions = (const char *)glGetString(GL_EXTENSIONS);
523 if (!HasExtension("GL_OES_EGL_image", gl_extensions))
526 if (!HasExtension("GL_OES_EGL_image_external", gl_extensions))
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 833 String8 gl_extensions; local
834 const char* exts = reinterpret_cast<const char*>(glGetString(GL_EXTENSIONS));
838 gl_extensions.setTo(exts);
839 if ((gl_extensions.find("GL_ARB_texture_non_power_of_two") != -1) ||
840 (gl_extensions.find("GL_OES_texture_npot") != -1)) {
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_extensions.c 266 * Given a member \c x of struct gl_extensions, return offset of
269 #define o(x) offsetof(struct gl_extensions, x)
  /external/mesa3d/src/mesa/main/
mtypes.h 2945 struct gl_extensions struct
    [all...]
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...]
samplerobj.c 287 const struct gl_extensions * const e = &ctx->Extensions;
    [all...]
texparam.c 58 const struct gl_extensions * const e = & ctx->Extensions;
    [all...]
get.c 211 offsetof(struct gl_extensions, f)
463 * gl_extensions" include a member with the name of the extension.
    [all...]

Completed in 276 milliseconds