HomeSort by relevance Sort by last modified time
    Searched refs:API (Results 151 - 175 of 428) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/mesa3d/src/mesa/main/
varray.c 146 if (ctx->API == API_OPENGL_CORE
279 GLbitfield legalTypes = (ctx->API == API_OPENGLES)
297 const GLbitfield legalTypes = (ctx->API == API_OPENGLES)
315 const GLbitfield legalTypes = (ctx->API == API_OPENGLES)
323 const GLint sizeMin = (ctx->API == API_OPENGLES) ? 4 : 3;
383 GLbitfield legalTypes = (ctx->API == API_OPENGLES)
389 const GLint sizeMin = (ctx->API == API_OPENGLES) ? 2 : 1;
422 if (ctx->API != API_OPENGLES) {
650 if ((ctx->API != API_OPENGL_CORE || ctx->Version < 31)
651 && ctx->API != API_OPENGLES2)
    [all...]
shaderapi.c 29 * Implementation of GLSL-related API functions.
462 (ctx->API == API_OPENGL && ctx->Extensions.EXT_transform_feedback)
463 || ctx->API == API_OPENGL_CORE
477 (ctx->API == API_OPENGL && ctx->Extensions.ARB_uniform_buffer_object)
478 || ctx->API == API_OPENGL_CORE
1311 * Called via glShaderSource() and glShaderSourceARB() API functions.
    [all...]
  /frameworks/rs/api/
rs_for_each.spec 115 Up to API level 23, the kernel is implicitly specified as the kernel named
117 Starting in API level 24, an arbitrary kernel function can be used,
202 this API. If allocations are passed in, they must match the number of arguments
226 summary: (Internal API) Launch a kernel in the current Script (with the slot number)
228 Internal API to launch a kernel.
  /external/jdiff/src/jdiff/
XMLToAPI.java 16 * Creates an API object from an XML file. The API object is the internal
17 * representation of an API.
18 * All methods in this class for populating an API object are static.
25 /** The instance of the API object which is populated from the file. */
26 private static API api_ = null;
33 * Read the file where the XML representing the API is stored.
36 * representing the API
38 * @param apiName The simple name of the API file. If -oldapidir and
42 public static API readFile(String filename, boolean createGlobalComments
    [all...]
  /external/mesa3d/src/egl/main/
egldriver.c 594 if (!drv->API.Initialize(drv, dpy))
608 if (mod->Driver->API.Initialize(mod->Driver, dpy)) {
679 proc = mod->Driver->API.GetProcAddress(mod->Driver, procname);
  /external/mesa3d/src/mesa/drivers/common/
meta.c 557 && ctx->API != API_OPENGL_CORE
558 && ctx->API != API_OPENGLES2) {
603 if (ctx->API == API_OPENGL) {
616 if (ctx->API == API_OPENGL && ctx->Extensions.ARB_vertex_program) {
623 if (ctx->API == API_OPENGL && ctx->Extensions.ARB_fragment_program) {
630 if (ctx->API == API_OPENGL && ctx->Extensions.ATI_fragment_shader) {
664 if (ctx->API == API_OPENGL || ctx->API == API_OPENGLES) {
677 if (ctx->API == API_OPENGL) {
702 if (ctx->API == API_OPENGL || ctx->API == API_OPENGLES)
    [all...]