HomeSort by relevance Sort by last modified time
    Searched refs:attrib (Results 51 - 75 of 436) sorted by null

1 23 4 5 6 7 8 91011>>

  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglPixmapSurface.h 30 bool getAttrib(EGLint attrib,EGLint* val);
EglPbufferSurface.h 33 bool setAttrib(EGLint attrib,EGLint val);
34 bool getAttrib(EGLint attrib,EGLint* val);
EglPixmapSurface.cpp 40 bool EglPixmapSurface::getAttrib(EGLint attrib,EGLint* val) {
41 switch(attrib) {
EglWindowSurface.cpp 41 bool EglWindowSurface::getAttrib(EGLint attrib,EGLint* val) {
42 switch(attrib) {
EglWindowSurface.h 30 bool getAttrib(EGLint attrib,EGLint* val);
  /external/markdown/markdown/extensions/
toc.py 24 div.attrib["class"] = "toc"
30 header.attrib["class"] = "toctitle"
40 if "id" in c.attrib:
41 used_ids.append(c.attrib["id"])
77 if not "id" in c.attrib:
85 c.attrib["id"] = id
87 id = c.attrib["id"]
93 link.attrib["href"] = '#' + id
98 anchor.attrib["href"] = "#" + id
99 anchor.attrib["class"] = "toclink
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.cpp 131 const VertexAttrib& attrib = iter->second; local
132 if (attrib.owned_data)
133 delete[] attrib.owned_data;
962 VertexAttrib attrib; local
963 attrib.is_const = false;
964 attrib.index = var;
965 attrib.components = components;
966 attrib.normalized = normalize;
967 attrib.stride = stride;
968 attrib.type = type
988 VertexAttrib attrib; local
1028 VertexAttrib attrib; local
1053 const VertexAttrib& attrib = iter->second; local
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
VertexBuffer.h 33 virtual bool storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue,
35 virtual bool getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, GLsizei instances,
66 virtual bool storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue,
69 bool directStoragePossible(const gl::VertexAttribute &attrib,
112 bool storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue,
  /external/deqp/framework/egl/
egluCallLogWrapper.cpp 124 // Config attrib pointer formatter
129 deUint32 attrib; member in class:eglu::ConfigAttribValuePointerFmt
131 ConfigAttribValuePointerFmt (deUint32 attrib_, const int* value_) : attrib(attrib_), value(value_) {}
134 inline ConfigAttribValuePointerFmt getConfigAttribValuePointerStr (deUint32 attrib, const int* value) { return ConfigAttribValuePointerFmt(attrib, value); }
139 return str << getConfigAttribValueStr(fmt.attrib, *fmt.value);
144 // Context attrib pointer formatter
149 deUint32 attrib; member in class:eglu::ContextAttribValuePointerFmt
151 ContextAttribValuePointerFmt (deUint32 attrib_, const int* value_) : attrib(attrib_), value(value_) {}
154 inline ContextAttribValuePointerFmt getContextAttribValuePointerStr (deUint32 attrib, const int* value) { return ContextAttribValuePointerFmt(attrib, value);
169 deUint32 attrib; member in class:eglu::SurfaceAttribValuePointerFmt
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/translate/
translate_generic.c 46 typedef void (*emit_func)(const void *attrib, void *ptr);
76 } attrib[PIPE_MAX_ATTRIBS]; member in struct:translate_generic
94 #define ATTRIB( NAME, SZ, SRCTYPE, DSTTYPE, TO ) \
96 emit_##NAME(const void *attrib, void *ptr) \
99 SRCTYPE *in = (SRCTYPE *)attrib; \
133 ATTRIB( R64G64B64A64_FLOAT, 4, float, double, TO_64_FLOAT )
134 ATTRIB( R64G64B64_FLOAT, 3, float, double, TO_64_FLOAT )
135 ATTRIB( R64G64_FLOAT, 2, float, double, TO_64_FLOAT )
136 ATTRIB( R64_FLOAT, 1, float, double, TO_64_FLOAT )
138 ATTRIB( R32G32B32A32_FLOAT, 4, float, float, TO_32_FLOAT
    [all...]
  /external/mesa3d/src/gallium/auxiliary/translate/
translate_generic.c 46 typedef void (*emit_func)(const void *attrib, void *ptr);
76 } attrib[PIPE_MAX_ATTRIBS]; member in struct:translate_generic
94 #define ATTRIB( NAME, SZ, SRCTYPE, DSTTYPE, TO ) \
96 emit_##NAME(const void *attrib, void *ptr) \
99 SRCTYPE *in = (SRCTYPE *)attrib; \
133 ATTRIB( R64G64B64A64_FLOAT, 4, float, double, TO_64_FLOAT )
134 ATTRIB( R64G64B64_FLOAT, 3, float, double, TO_64_FLOAT )
135 ATTRIB( R64G64_FLOAT, 2, float, double, TO_64_FLOAT )
136 ATTRIB( R64_FLOAT, 1, float, double, TO_64_FLOAT )
138 ATTRIB( R32G32B32A32_FLOAT, 4, float, float, TO_32_FLOAT
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_linetemp.h 71 GLint x0 = (GLint) vert0->attrib[FRAG_ATTRIB_WPOS][0];
72 GLint x1 = (GLint) vert1->attrib[FRAG_ATTRIB_WPOS][0];
73 GLint y0 = (GLint) vert0->attrib[FRAG_ATTRIB_WPOS][1];
74 GLint y1 = (GLint) vert1->attrib[FRAG_ATTRIB_WPOS][1];
102 GLfloat tmp = vert0->attrib[FRAG_ATTRIB_WPOS][0] + vert0->attrib[FRAG_ATTRIB_WPOS][1]
103 + vert1->attrib[FRAG_ATTRIB_WPOS][0] + vert1->attrib[FRAG_ATTRIB_WPOS][1];
111 vert0->attrib[FRAG_ATTRIB_WPOS][0],
112 vert0->attrib[FRAG_ATTRIB_WPOS][1]
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_linetemp.h 71 GLint x0 = (GLint) vert0->attrib[FRAG_ATTRIB_WPOS][0];
72 GLint x1 = (GLint) vert1->attrib[FRAG_ATTRIB_WPOS][0];
73 GLint y0 = (GLint) vert0->attrib[FRAG_ATTRIB_WPOS][1];
74 GLint y1 = (GLint) vert1->attrib[FRAG_ATTRIB_WPOS][1];
102 GLfloat tmp = vert0->attrib[FRAG_ATTRIB_WPOS][0] + vert0->attrib[FRAG_ATTRIB_WPOS][1]
103 + vert1->attrib[FRAG_ATTRIB_WPOS][0] + vert1->attrib[FRAG_ATTRIB_WPOS][1];
111 vert0->attrib[FRAG_ATTRIB_WPOS][0],
112 vert0->attrib[FRAG_ATTRIB_WPOS][1]
    [all...]
  /hardware/intel/common/libva/test/basic/
test_vaSurfaceAttrib.c 39 VAConfigAttrib attrib[2]; local
71 attrib[0].type = VAConfigAttribRTFormat;
72 attrib[1].type = VAConfigAttribRateControl;
73 va_status = vaGetConfigAttributes(va_dpy, VAProfileH264Baseline, VAEntrypointEncSlice, &attrib[0], 2);
76 if ((attrib[0].value & VA_RT_FORMAT_YUV420) == 0) {
81 if ((attrib[1].value & VA_RC_VBR) == 0) {
87 attrib[0].value = VA_RT_FORMAT_YUV420; /* set to desired RT format */
88 attrib[1].value = VA_RC_VBR; /* set to desired RC mode */
90 va_status = vaCreateConfig(va_dpy, VAProfileH264Baseline, VAEntrypointEncSlice, &attrib[0], 2, &config_id);
  /external/chromium_org/gpu/command_buffer/service/
context_state.cc 193 for (size_t attrib = 0; attrib < vertex_attrib_manager->num_attribs();
194 ++attrib) {
195 glVertexAttrib4fv(attrib, attrib_values[attrib].v);
210 // Restore vertex attrib arrays.
213 const VertexAttrib* attrib = attrib_manager->GetVertexAttrib(attrib_index); local
216 Buffer* buffer = attrib->buffer();
219 const void* ptr = reinterpret_cast<const void*>(attrib->offset());
221 attrib->size()
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
VertexBuffer11.h 28 virtual bool storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue,
31 virtual bool getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, GLsizei instances,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
utils.h 63 unsigned int attrib, unsigned int *value);
66 unsigned int *attrib, unsigned int *value);
  /external/mesa3d/src/mesa/drivers/dri/common/
utils.h 63 unsigned int attrib, unsigned int *value);
66 unsigned int *attrib, unsigned int *value);
  /external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
SDL_macgl_c.h 41 extern int Mac_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value);
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttAnnotationDefault.java 17 package com.android.dx.cf.attrib;
AttExceptions.java 17 package com.android.dx.cf.attrib;
AttInnerClasses.java 17 package com.android.dx.cf.attrib;
AttLineNumberTable.java 17 package com.android.dx.cf.attrib;
BaseLocalVariables.java 17 package com.android.dx.cf.attrib;
  /external/chromium_org/ppapi/thunk/
ppb_media_stream_audio_track_api.h 20 virtual int32_t GetAttrib(PP_MediaStreamAudioTrack_Attrib attrib,

Completed in 1262 milliseconds

1 23 4 5 6 7 8 91011>>