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

  /frameworks/native/opengl/libs/EGL/
egl_object.cpp 120 * Here we cache the GL_EXTENSIONS string for this context and we
124 if (gl_extensions.isEmpty()) {
125 // call the implementation's glGetString(GL_EXTENSIONS)
126 const char* exts = (const char *)gEGLImpl.hooks[version]->gl.glGetString(GL_EXTENSIONS);
127 gl_extensions.setTo(exts);
128 if (gl_extensions.find("GL_EXT_debug_marker") < 0) {
130 temp.append(gl_extensions);
131 gl_extensions.setTo(temp);
137 ss << gl_extensions.string();
egl.cpp 133 if (name != GL_EXTENSIONS)
136 return (const GLubyte *)c->gl_extensions.string();
151 if (name != GL_EXTENSIONS)
egl_object.h 166 String8 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))
  /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 150 milliseconds