HomeSort by relevance Sort by last modified time
    Searched full:attribs (Results 51 - 75 of 256) sorted by null

1 23 4 5 6 7 8 91011

  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_context.c 144 struct st_context_attribs attribs; local
187 memset(&attribs, 0, sizeof(attribs));
188 attribs.visual = pfi->stvis;
189 attribs.major = majorVersion;
190 attribs.minor = minorVersion;
192 attribs.flags |= ST_CONTEXT_FLAG_FORWARD_COMPATIBLE;
194 attribs.flags |= ST_CONTEXT_FLAG_DEBUG;
208 attribs.profile = ST_PROFILE_DEFAULT;
211 attribs.profile = ST_PROFILE_OPENGL_CORE
    [all...]
  /frameworks/native/services/surfaceflinger/RenderEngine/
RenderEngine.cpp 105 EGLint attribs[] = { EGL_WIDTH, 1, EGL_HEIGHT, 1, EGL_NONE, EGL_NONE }; local
106 EGLSurface dummy = eglCreatePbufferSurface(display, dummyConfig, attribs);
374 EGLAttributeVector attribs; local
376 attribs[EGL_RENDERABLE_TYPE] = renderableType;
377 attribs[EGL_RECORDABLE_ANDROID] = EGL_TRUE;
378 attribs[EGL_SURFACE_TYPE] = EGL_WINDOW_BIT|EGL_PBUFFER_BIT;
379 attribs[EGL_FRAMEBUFFER_TARGET_ANDROID] = EGL_TRUE;
380 attribs[EGL_RED_SIZE] = 8;
381 attribs[EGL_GREEN_SIZE] = 8;
382 attribs[EGL_BLUE_SIZE] = 8
    [all...]
  /device/generic/goldfish/opengl/system/renderControl_enc/
renderControl.in 7 GL_ENTRY(EGLint, rcChooseConfig, EGLint *attribs, uint32_t attribs_size, uint32_t *configs, uint32_t configs_size)
README 42 EGLint rcChooseConfig(EGLint *attribs, uint32_t attribs_size, uint32_t *configs, uint32_t configs_size)
44 configs matching the given attribs values.
45 attribs - a list of attribute names followed by the desired values, terminated by EGL_NONE
  /frameworks/rs/driver/
rsdVertexArray.h 49 RsdVertexArray(const Attrib *attribs, uint32_t numAttribs);
rsdVertexArray.cpp 31 RsdVertexArray::RsdVertexArray(const Attrib *attribs, uint32_t numAttribs) {
32 mAttribs = attribs;
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie.java 79 this.attribs = new HashMap<String, String>();
309 this.attribs.put(name, value);
313 return this.attribs.get(name);
317 return this.attribs.get(name) != null;
323 clone.attribs = new HashMap<String, String>(this.attribs);
357 private Map<String, String> attribs; field in class:BasicClientCookie
CookieSpecBase.java 91 NameValuePair[] attribs = headerelement.getParameters(); local
92 for (int j = attribs.length - 1; j >= 0; j--) {
93 NameValuePair attrib = attribs[j];
  /external/droiddriver/src/io/appium/droiddriver/instrumentation/
ViewElement.java 51 final Map<Attribute, Object> attribs = new EnumMap<Attribute, Object>(Attribute.class); field in class:ViewElement.AttributesSnapshot
79 attribs.put(Attribute.SELECTION_START, textView.getSelectionStart());
80 attribs.put(Attribute.SELECTION_END, textView.getSelectionEnd());
98 attribs.put(key, value);
226 attributes = Collections.unmodifiableMap(attributesSnapshot.attribs);
  /external/mesa3d/src/gallium/state_trackers/vega/
vg_manager.c 165 const struct st_context_attribs *attribs,
173 if (!(stapi->profile_mask & (1 << attribs->profile))) {
179 if (attribs->major > 1 || (attribs->major == 1 && attribs->minor > 0)) {
  /external/mesa3d/src/mesa/swrast/
s_fog.c 93 const GLfloat fogCoord = span->array->attribs[FRAG_ATTRIB_FOGC][i][0]; \
176 GLfloat (*rgba)[4] = span->array->attribs[FRAG_ATTRIB_COL0];
195 GLfloat (*rgba)[4] = span->array->attribs[FRAG_ATTRIB_COL0];
214 GLfloat (*rgba)[4] = span->array->attribs[FRAG_ATTRIB_COL0];
239 GLfloat (*rgba)[4] = span->array->attribs[FRAG_ATTRIB_COL0];
s_fragprog.c 165 GLfloat *wpos = span->array->attribs[FRAG_ATTRIB_WPOS][col];
181 machine->Attribs = span->array->attribs;
192 machine->Attribs[FRAG_ATTRIB_FACE][col][0] = 1.0F - span->facing;
231 COPY_4V(span->array->attribs[FRAG_ATTRIB_COL0][i],
242 COPY_4V(span->array->attribs[FRAG_ATTRIB_COL0 + buf][i],
  /external/v8/src/
bootstrapper.cc 403 PropertyAttributes attribs = static_cast<PropertyAttributes>( local
407 Accessors::FunctionLengthInfo(isolate(), attribs);
410 length, attribs);
414 Accessors::FunctionNameInfo(isolate(), attribs);
417 name, attribs);
421 Accessors::FunctionArgumentsInfo(isolate(), attribs);
424 args, attribs);
428 Accessors::FunctionCallerInfo(isolate(), attribs);
431 caller, attribs);
436 attribs = static_cast<PropertyAttributes>(attribs & ~READ_ONLY)
593 PropertyAttributes attribs = local
928 PropertyAttributes attribs = static_cast<PropertyAttributes>( local
982 PropertyAttributes attribs = static_cast<PropertyAttributes>( local
1622 PropertyAttributes attribs = static_cast<PropertyAttributes>( local
1706 PropertyAttributes attribs = local
2064 PropertyAttributes attribs = DONT_ENUM; local
    [all...]
  /external/mesa3d/src/glx/
dri_common.c 458 dri2_convert_glx_attribs(unsigned num_attribs, const uint32_t *attribs,
475 if (attribs == NULL) {
485 switch (attribs[i * 2]) {
487 *major_ver = attribs[i * 2 + 1];
490 *minor_ver = attribs[i * 2 + 1];
493 *flags = attribs[i * 2 + 1];
496 profile = attribs[i * 2 + 1];
500 render_type = attribs[i * 2 + 1];
503 switch (attribs[i * 2 + 1]) {
glx_pbuffer.c 83 const CARD32 * attribs, size_t num_attribs)
129 (void) memcpy(output, attribs, sizeof(CARD32) * 2 * num_attribs);
141 switch(attribs[i * 2]) {
144 pdraw->eventMask = attribs[i * 2 + 1];
156 determineTextureTarget(const int *attribs, int numAttribs)
162 if (attribs[2 * i] == GLX_TEXTURE_TARGET_EXT) {
163 switch (attribs[2 * i + 1]) {
178 determineTextureFormat(const int *attribs, int numAttribs)
183 if (attribs[2 * i] == GLX_TEXTURE_FORMAT_EXT)
184 return attribs[2 * i + 1]
    [all...]
  /sdk/find_java/src/source/
utils.h 270 DWORD attribs = GetFileAttributesA(mStr);
271 return attribs != INVALID_FILE_ATTRIBUTES &&
272 !(attribs & FILE_ATTRIBUTE_DIRECTORY);
279 DWORD attribs = GetFileAttributesA(mStr);
280 return attribs != INVALID_FILE_ATTRIBUTES &&
281 (attribs & FILE_ATTRIBUTE_DIRECTORY) != 0;
  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 61 int[] attribs = { EGL_CONTEXT_CLIENT_VERSION, 2, EGL10.EGL_NONE }; local
62 mEGLContext = egl.eglCreateContext(mEGLDisplay, mEGLConfig, EGL10.EGL_NO_CONTEXT, attribs);
  /external/deqp/modules/egl/
teglRenderCase.cpp 322 static const EGLint attribs[] = { EGL_CONTEXT_CLIENT_VERSION, 2, EGL_NONE }; local
324 contexts.push_back(std::make_pair(EGL_OPENGL_ES2_BIT, egl.createContext(display, config.config, EGL_NO_CONTEXT, &attribs[0])));
329 static const EGLint attribs[] = { EGL_CONTEXT_MAJOR_VERSION_KHR, 3, EGL_NONE }; local
331 contexts.push_back(std::make_pair(EGL_OPENGL_ES3_BIT_KHR, egl.createContext(display, config.config, EGL_NO_CONTEXT, &attribs[0])));
336 static const EGLint attribs[] = { EGL_CONTEXT_CLIENT_VERSION, 1, EGL_NONE }; local
338 contexts.push_back(std::make_pair(EGL_OPENGL_ES_BIT, egl.createContext(display, config.config, EGL_NO_CONTEXT, &attribs[0])));
343 static const EGLint attribs[] = { EGL_NONE }; local
345 contexts.push_back(std::make_pair(EGL_OPENVG_BIT, egl.createContext(display, config.config, EGL_NO_CONTEXT, &attribs[0])));
  /external/mesa3d/src/gallium/auxiliary/util/
u_draw_quad.c 39 * Limited to float[4] vertex attribs, tightly packed.
74 * Limited to float[4] vertex attribs, tightly packed.
  /frameworks/native/opengl/tests/filter/
filter.cpp 58 EGLint attribs[] = { EGL_WIDTH, 320, EGL_HEIGHT, 480, EGL_NONE }; local
59 surface = eglCreatePbufferSurface(dpy, config, attribs);
  /hardware/intel/common/libva/va/
va_compat.h 106 #define vaCreateSurfaces8(dpy, format, width, height, surfaces, num_surfaces, attribs, num_attribs) \
108 attribs, num_attribs)
va_enc.h 122 * @param[in] attribs the optional attributes, or NULL
123 * @param[in] num_attribs the number of attributes available in \c attribs
127 va_enc_bitstream_new(VAEncBitstreamAttrib *attribs, unsigned int num_attribs);
  /external/libxml2/python/tests/
Makefile.am 6 attribs.py \
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
plugin.h 65 /* In attribs.c. */
  /external/deqp/modules/gles2/functional/
es2fPolygonOffsetTests.cpp 419 rr::VertexAttrib attribs[2]; local
424 attribs[0].type = rr::VERTEXATTRIBTYPE_FLOAT;
425 attribs[0].size = 4;
426 attribs[0].stride = 0;
427 attribs[0].instanceDivisor = 0;
428 attribs[0].pointer = triangle;
430 attribs[1].type = rr::VERTEXATTRIBTYPE_DONT_CARE;
431 attribs[1].generic = tcu::Vec4(1.0f, 0.0f, 0.0f, 1.0f);
443 attribs,
682 rr::VertexAttrib attribs[2] local
    [all...]

Completed in 990 milliseconds

1 23 4 5 6 7 8 91011