HomeSort by relevance Sort by last modified time
    Searched refs:Extensions (Results 176 - 200 of 295) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/mesa3d/src/egl/drivers/dri2/
egl_dri2.c 208 (disp->Extensions.NOK_texture_from_pixmap ? EGL_PIXMAP_BIT : 0))) {
336 const __DRIextension **extensions)
341 for (i = 0; extensions[i]; i++) {
342 _eglLog(_EGL_DEBUG, "DRI2: found extension `%s'", extensions[i]->name);
344 if (strcmp(extensions[i]->name, matches[j].name) == 0 &&
345 extensions[i]->version >= matches[j].version) {
347 *(const __DRIextension **) field = extensions[i];
349 extensions[i]->name, extensions[i]->version);
370 const __DRIextension **extensions; local
426 const __DRIextension **extensions; local
444 const __DRIextension **extensions; local
501 const __DRIextension **extensions; local
    [all...]
platform_x11.c 1010 dri2_dpy->extensions[0] = &dri2_dpy->swrast_loader_extension.base;
1011 dri2_dpy->extensions[1] = NULL;
1012 dri2_dpy->extensions[2] = NULL;
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
NanoTest.java 61 import com.google.protobuf.nano.testext.Extensions;
62 import com.google.protobuf.nano.testext.Extensions.AnotherMessage;
63 import com.google.protobuf.nano.testext.Extensions.MessageWithGroup;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_drawpixels.c 349 if (ctx->Extensions.ARB_depth_buffer_float)
425 ctx->Extensions.EXT_texture_snorm ? GL_RGBA8_SNORM : GL_RGBA8;
430 ctx->Extensions.EXT_texture_snorm ? GL_RGBA16_SNORM : GL_RGBA16;
434 ctx->Extensions.ARB_texture_float ? GL_RGBA16F :
435 ctx->Extensions.EXT_texture_snorm ? GL_RGBA16_SNORM : GL_RGBA16;
440 ctx->Extensions.ARB_texture_float ? GL_RGBA32F :
441 ctx->Extensions.EXT_texture_snorm ? GL_RGBA16_SNORM : GL_RGBA16;
444 assert(ctx->Extensions.EXT_texture_shared_exponent);
448 assert(ctx->Extensions.EXT_packed_float);
    [all...]
st_atom_blend.c 214 if (ctx->Extensions.ARB_draw_buffers_blend)
  /external/mesa3d/src/mesa/state_tracker/
st_cb_drawpixels.c 349 if (ctx->Extensions.ARB_depth_buffer_float)
425 ctx->Extensions.EXT_texture_snorm ? GL_RGBA8_SNORM : GL_RGBA8;
430 ctx->Extensions.EXT_texture_snorm ? GL_RGBA16_SNORM : GL_RGBA16;
434 ctx->Extensions.ARB_texture_float ? GL_RGBA16F :
435 ctx->Extensions.EXT_texture_snorm ? GL_RGBA16_SNORM : GL_RGBA16;
440 ctx->Extensions.ARB_texture_float ? GL_RGBA32F :
441 ctx->Extensions.EXT_texture_snorm ? GL_RGBA16_SNORM : GL_RGBA16;
444 assert(ctx->Extensions.EXT_texture_shared_exponent);
448 assert(ctx->Extensions.EXT_packed_float);
    [all...]
st_atom_blend.c 214 if (ctx->Extensions.ARB_draw_buffers_blend)
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
shaderapi.c 173 return ctx->Extensions.ARB_fragment_shader;
177 return ctx->Extensions.ARB_vertex_shader;
181 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_geometry_shader4;
462 (ctx->API == API_OPENGL && ctx->Extensions.EXT_transform_feedback)
471 _mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_geometry_shader4;
477 (ctx->API == API_OPENGL && ctx->Extensions.ARB_uniform_buffer_object)
    [all...]
pixelstore.c 136 if (!ctx->Extensions.MESA_pack_invert) {
texgetimage.c 679 return ctx->Extensions.ARB_texture_cube_map;
681 return ctx->Extensions.NV_texture_rectangle;
684 return (ctx->Extensions.MESA_texture_array ||
685 ctx->Extensions.EXT_texture_array);
get.c 29 #include "extensions.h"
53 * check that one of a number of extensions are enabled, the GL
224 * extensions or specific gl versions) or actions (flush current, new
462 /* Note that all the OES_* extensions require that the Mesa "struct
464 * That structure does not yet include OES extensions (and we're
466 * extensions below should mark the dependency. */
    [all...]
  /external/mesa3d/src/mesa/main/
shaderapi.c 173 return ctx->Extensions.ARB_fragment_shader;
177 return ctx->Extensions.ARB_vertex_shader;
181 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_geometry_shader4;
462 (ctx->API == API_OPENGL && ctx->Extensions.EXT_transform_feedback)
471 _mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_geometry_shader4;
477 (ctx->API == API_OPENGL && ctx->Extensions.ARB_uniform_buffer_object)
    [all...]
pixelstore.c 136 if (!ctx->Extensions.MESA_pack_invert) {
texgetimage.c 679 return ctx->Extensions.ARB_texture_cube_map;
681 return ctx->Extensions.NV_texture_rectangle;
684 return (ctx->Extensions.MESA_texture_array ||
685 ctx->Extensions.EXT_texture_array);
get.c 29 #include "extensions.h"
53 * check that one of a number of extensions are enabled, the GL
224 * extensions or specific gl versions) or actions (flush current, new
462 /* Note that all the OES_* extensions require that the Mesa "struct
464 * That structure does not yet include OES extensions (and we're
466 * extensions below should mark the dependency. */
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
certificate_viewer_webui.cc 385 // Extensions.
386 x509_certificate_model::Extensions extensions; local
390 cert, &extensions); local
392 if (!extensions.empty()) {
398 for (x509_certificate_model::Extensions::const_iterator i =
399 extensions.begin(); i != extensions.end(); ++i) {
  /external/chromium_org/chrome/common/
crash_keys_unittest.cc 104 TEST_F(CrashKeysTest, Extensions) {
105 // Set three extensions.
107 std::set<std::string> extensions; local
108 extensions.insert("ext.1");
109 extensions.insert("ext.2");
110 extensions.insert("ext.3");
112 crash_keys::SetActiveExtensions(extensions);
114 extensions.erase(GetKeyValue("extension-1"));
115 extensions.erase(GetKeyValue("extension-2"));
116 extensions.erase(GetKeyValue("extension-3"))
125 std::set<std::string> extensions; local
145 std::set<std::string> extensions; local
    [all...]
  /external/chromium_org/net/http/
http_chunked_decoder_unittest.cc 127 TEST(HttpChunkedDecoderTest, Extensions) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/
hybi.py 51 from mod_pywebsocket.extensions import get_extension_processor
52 from mod_pywebsocket.extensions import is_compression_extension
188 # Ask each processor if there are extensions on the request which
204 # - Remove processors of extensions for logical channel,
244 # Inactivate all of the following compression extensions.
252 'Extensions accepted: %r',
332 'Failed to parse Sec-WebSocket-Extensions header: %r' % e)
335 'Extensions requested: %r',
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
cpp_message.py 404 '_cmsg', '_owner', '_composite_fields', 'Extensions', '_HACK_REFCOUNTS']
421 """Adds class attributes for the nested extensions."""
469 self.Extensions = ExtensionDict(self)
472 # the Extensions reference to keep this object alive during unit
513 self.Extensions.ClearExtension(extension)
516 return self.Extensions.HasExtension(extension)
601 all_fields.append((extension, self.Extensions[extension]))
  /external/libpcap/pcap/
pcap.h 452 /* Include file with the wpcap-specific extensions */
453 #include <Win32-Extensions.h>
  /frameworks/base/core/java/android/provider/
Contacts.java 712 * The extensions for a person
716 public static class Extensions implements BaseColumns, ExtensionsColumns {
721 private Extensions() {}
728 public static final String CONTENT_DIRECTORY = "extensions";
    [all...]
  /frameworks/base/libs/hwui/
Caches.h 38 #include "Extensions.h"
417 Extensions& mExtensions;
  /frameworks/base/libs/hwui/font/
CacheTexture.cpp 22 #include "../Extensions.h"
122 mHasUnpackRowLength = Extensions::getInstance().hasUnpackRowLength();
  /external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
platform_x11.c 1010 dri2_dpy->extensions[0] = &dri2_dpy->swrast_loader_extension.base;
1011 dri2_dpy->extensions[1] = NULL;
1012 dri2_dpy->extensions[2] = NULL;
    [all...]

Completed in 3238 milliseconds

1 2 3 4 5 6 78 91011>>