HomeSort by: relevance | last modified time | path
    Searched refs:API (Results 1 - 25 of 182) sorted by relevancy

1 2 3 4 5 6 7 8

  /xsrc/external/mit/MesaLib.old/dist/src/egl/main/
eglfallbacks.c 53 drv->API.Initialize = NULL;
54 drv->API.Terminate = NULL;
56 drv->API.GetConfigs = _eglGetConfigs;
57 drv->API.ChooseConfig = _eglChooseConfig;
58 drv->API.GetConfigAttrib = _eglGetConfigAttrib;
60 drv->API.CreateContext = (void*) _eglReturnFalse;
61 drv->API.DestroyContext = (void*) _eglReturnFalse;
62 drv->API.MakeCurrent = (void*) _eglReturnFalse;
63 drv->API.QueryContext = _eglQueryContext;
65 drv->API.CreateWindowSurface = (void*) _eglReturnFalse
    [all...]
egldriver.c 76 if (_eglDriver->API.Initialize(_eglDriver, disp))
115 return _eglDriver->API.GetProcAddress(_eglDriver, procname);
egldriver.h 78 _EGLAPI API; /**< EGL API dispatch table */
eglapi.c 32 * Public EGL API entrypoints
45 * For each public API entry point, the opaque handles are looked up
116 * Macros to help return an API entrypoint.
673 drv->API.Terminate(drv, disp);
731 ret = drv->API.GetConfigs(drv, disp, configs, config_size, num_config);
748 ret = drv->API.ChooseConfig(drv, disp, attrib_list, configs,
767 ret = drv->API.GetConfigAttrib(drv, disp, conf, attribute, value);
796 context = drv->API.CreateContext(drv, disp, conf, share, attrib_list);
815 ret = drv->API.DestroyContext(drv, disp, context);
873 ret = drv->API.MakeCurrent(drv, disp, draw_surf, read_surf, context)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
enable.c 230 * whether the API supports it (GLES doesn't).
241 if (ctx->API == API_OPENGL_COMPAT || ctx->API == API_OPENGLES ||
258 * check for whether the API supports it (GLES doesn't).
299 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
309 if (ctx->API != API_OPENGL_COMPAT)
348 if (ctx->API == API_OPENGL_COMPAT || ctx->API == API_OPENGLES ||
361 if (ctx->API == API_OPENGL_COMPAT || ctx->API == API_OPENGLES)
    [all...]
getstring.c 43 switch (ctx->API) {
97 _mesa_problem(ctx, "Unexpected API value in shading_language_version()");
143 if (ctx->API == API_OPENGL_CORE) {
151 if (ctx->API == API_OPENGLES)
155 if (ctx->API == API_OPENGL_COMPAT &&
248 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
253 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
258 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES
    [all...]
hint.c 53 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
61 if (!_mesa_is_desktop_gl(ctx) && ctx->API != API_OPENGLES)
69 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
77 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
105 if (ctx->API == API_OPENGL_CORE)
115 if (ctx->API == API_OPENGLES || !ctx->Extensions.ARB_fragment_shader)
vtxfmt.c 50 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) {
54 if (ctx->API == API_OPENGL_COMPAT) {
62 if (ctx->API == API_OPENGL_COMPAT) {
66 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) {
72 if (ctx->API == API_OPENGL_COMPAT) {
87 if (ctx->API == API_OPENGL_COMPAT) {
106 if (ctx->API == API_OPENGL_COMPAT) {
115 if (ctx->API == API_OPENGL_COMPAT)
    [all...]
context.h 112 gl_api api,
140 _mesa_init_constants(struct gl_constants *consts, gl_api api);
252 * Macro to assert that the API call was made outside the
267 * Macro to assert that the API call was made outside the
289 return ctx->API == API_OPENGL_COMPAT || ctx->API == API_OPENGL_CORE;
299 return ctx->API == API_OPENGLES || ctx->API == API_OPENGLES2;
309 return ctx->API == API_OPENGLES2 && ctx->Version >= 30;
319 return ctx->API == API_OPENGLES2 && ctx->Version >= 31
    [all...]
extensions.h 75 /** Minimum version the extension requires for the given API
104 _mesa_extension_table[MESA_EXTENSION_##name_str].version[ctx->API]); \
texgen.c 49 if (ctx->API == API_OPENGLES) {
129 if (ctx->API != API_OPENGL_COMPAT
143 if (ctx->API != API_OPENGL_COMPAT) {
158 if (ctx->API != API_OPENGL_COMPAT) {
350 if (ctx->API != API_OPENGL_COMPAT) {
357 if (ctx->API != API_OPENGL_COMPAT) {
395 if (ctx->API != API_OPENGL_COMPAT) {
405 if (ctx->API != API_OPENGL_COMPAT) {
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
getstring.c 44 switch (ctx->API) {
98 _mesa_problem(ctx, "Unexpected API value in shading_language_version()");
152 if (ctx->API == API_OPENGL_CORE) {
160 if (ctx->API == API_OPENGLES)
164 if (ctx->API == API_OPENGL_COMPAT &&
252 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
257 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
262 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES
    [all...]
enable.c 345 * whether the API supports it (GLES doesn't).
356 if (ctx->API == API_OPENGL_COMPAT || ctx->API == API_OPENGLES ||
373 * check for whether the API supports it (GLES doesn't).
415 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
426 if (ctx->API != API_OPENGL_COMPAT)
469 if (ctx->API == API_OPENGL_COMPAT || ctx->API == API_OPENGLES ||
483 if (ctx->API == API_OPENGL_COMPAT || ctx->API == API_OPENGLES)
    [all...]
hint.c 53 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
61 if (!_mesa_is_desktop_gl(ctx) && ctx->API != API_OPENGLES)
69 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
77 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
105 if (ctx->API == API_OPENGL_CORE)
115 if (ctx->API == API_OPENGLES || !ctx->Extensions.ARB_fragment_shader)
context.h 97 gl_api api,
121 _mesa_init_constants(struct gl_constants *consts, gl_api api);
236 * Macro to assert that the API call was made outside the
251 * Macro to assert that the API call was made outside the
273 return ctx->API == API_OPENGL_COMPAT || ctx->API == API_OPENGL_CORE;
283 return ctx->API == API_OPENGLES || ctx->API == API_OPENGLES2;
293 return ctx->API == API_OPENGLES2 && ctx->Version >= 30;
303 return ctx->API == API_OPENGLES2 && ctx->Version >= 31
    [all...]
extensions.h 75 /** Minimum version the extension requires for the given API
104 _mesa_extension_table[MESA_EXTENSION_##name_str].version[ctx->API]); \
points.c 177 if ((ctx->API == API_OPENGL_COMPAT && ctx->Version >= 20)
178 || ctx->API == API_OPENGL_CORE) {
240 ctx->Point.PointSprite = (ctx->API == API_OPENGL_CORE ||
241 ctx->API == API_OPENGLES2);
glformats.c 1382 return ctx->API == API_OPENGLES;
1801 * cannot be used to read depth or stencil in that API.
1857 ctx->API == API_OPENGLES2) {
1864 if (ctx->API == API_OPENGLES2 && format == GL_DEPTH_COMPONENT)
1988 return (ctx->API == API_OPENGLES2)
2277 return (ctx->API != API_OPENGL_CORE) ? GL_ALPHA : -1;
2284 return (ctx->API != API_OPENGL_CORE) ? GL_LUMINANCE : -1;
2293 return (ctx->API != API_OPENGL_CORE) ? GL_LUMINANCE_ALPHA : -1;
2299 return (ctx->API != API_OPENGL_CORE) ? GL_INTENSITY : -1;
2301 return (ctx->API != API_OPENGL_CORE) ? GL_RGB : -1
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/archrast/
archrast.h 38 API = 0,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/archrast/
archrast.h 38 API = 0,
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_util.h 99 return (ctx->API == API_OPENGL_COMPAT ||
100 ctx->API == API_OPENGLES) && /* only ES 1.x */
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_util.h 99 return (ctx->API == API_OPENGL_COMPAT ||
100 ctx->API == API_OPENGLES) && /* only ES 1.x */
116 else if (ctx->API != API_OPENGLES2) {
  /xsrc/external/mit/MesaLib.old/dist/src/egl/drivers/haiku/
egl_haiku.cpp 76 * Called via eglCreateWindowSurface(), drv->API.CreateWindowSurface().
325 driver->API.Initialize = init_haiku;
326 driver->API.Terminate = haiku_terminate;
327 driver->API.CreateContext = haiku_create_context;
328 driver->API.DestroyContext = haiku_destroy_context;
329 driver->API.MakeCurrent = haiku_make_current;
330 driver->API.CreateWindowSurface = haiku_create_window_surface;
331 driver->API.CreatePixmapSurface = haiku_create_pixmap_surface;
332 driver->API.CreatePbufferSurface = haiku_create_pbuffer_surface;
333 driver->API.DestroySurface = haiku_destroy_surface
    [all...]
  /xsrc/external/mit/MesaLib/src/mapi/glapi/gen/
api_exec.c 137 if (!_mesa_is_no_error_enabled(ctx) && (_mesa_is_desktop_gl(ctx) || (ctx->API == API_OPENGLES2 && ctx->Version >= 30))) {
175 if (!_mesa_is_no_error_enabled(ctx) && (_mesa_is_desktop_gl(ctx) || (ctx->API == API_OPENGLES2 && ctx->Version >= 31))) {
191 if (!_mesa_is_no_error_enabled(ctx) && (_mesa_is_desktop_gl(ctx) || (ctx->API == API_OPENGLES2 && ctx->Version >= 32))) {
195 if (!_mesa_is_no_error_enabled(ctx) && (_mesa_is_desktop_gl(ctx) || ctx->API == API_OPENGLES || ctx->API == API_OPENGLES2)) {
238 if (!_mesa_is_no_error_enabled(ctx) && (_mesa_is_desktop_gl(ctx) || ctx->API == API_OPENGLES)) {
242 if (!_mesa_is_no_error_enabled(ctx) && (_mesa_is_desktop_gl(ctx) || ctx->API == API_OPENGLES2)) {
318 if (!_mesa_is_no_error_enabled(ctx) && (ctx->API == API_OPENGLES)) {
321 if (!_mesa_is_no_error_enabled(ctx) && (ctx->API == API_OPENGL_COMPAT || ctx->API == API_OPENGLES))
    [all...]
  /xsrc/external/mit/MesaLib.old/src/mapi/glapi/
api_exec.c 141 if (!_mesa_is_no_error_enabled(ctx) && (_mesa_is_desktop_gl(ctx) || (ctx->API == API_OPENGLES2 && ctx->Version >= 30))) {
179 if (!_mesa_is_no_error_enabled(ctx) && (_mesa_is_desktop_gl(ctx) || (ctx->API == API_OPENGLES2 && ctx->Version >= 31))) {
194 if (!_mesa_is_no_error_enabled(ctx) && (_mesa_is_desktop_gl(ctx) || (ctx->API == API_OPENGLES2 && ctx->Version >= 32))) {
198 if (!_mesa_is_no_error_enabled(ctx) && (_mesa_is_desktop_gl(ctx) || ctx->API == API_OPENGLES || ctx->API == API_OPENGLES2)) {
241 if (!_mesa_is_no_error_enabled(ctx) && (_mesa_is_desktop_gl(ctx) || ctx->API == API_OPENGLES)) {
245 if (!_mesa_is_no_error_enabled(ctx) && (_mesa_is_desktop_gl(ctx) || ctx->API == API_OPENGLES2)) {
320 if (!_mesa_is_no_error_enabled(ctx) && (ctx->API == API_OPENGLES)) {
323 if (!_mesa_is_no_error_enabled(ctx) && (ctx->API == API_OPENGL_COMPAT || ctx->API == API_OPENGLES))
    [all...]

Completed in 20 milliseconds

1 2 3 4 5 6 7 8