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

12 3 4 5 6 7 8 91011>>

  /sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.cpp 30 EGLint attrib[MAX_ATTRIB]; local
33 attrib[pos++] = EGL_SURFACE_TYPE; attrib[pos++] = EGL_WINDOW_BIT;
34 if (config & CONFIG_DEPTH) {attrib[pos++] = EGL_DEPTH_SIZE; attrib[pos++] = 1;}
35 attrib[pos++] = EGL_NONE;
37 if (!eglChooseConfig(eglDisplay, attrib, &eglConfig, 1, &nConfigs)) {
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglValidate.cpp 19 bool EglValidate::confAttrib(EGLint attrib) {
20 switch(attrib) {
55 bool EglValidate::noAttribs(const EGLint* attrib) {
56 return !attrib || attrib[0] == EGL_NONE ;
EglValidate.h 23 static bool confAttrib(EGLint attrib);
24 static bool noAttribs(const EGLint* attrib);
  /external/chromium_org/gpu/command_buffer/client/
vertex_array_object_manager.cc 37 // to a special VBO and reset the actual vertex attrib pointers to point to this
41 // an attrib is a client side buffer we pass the info back the user expects.
207 VertexAttrib& attrib = vertex_attribs_[ii]; local
208 if (attrib.buffer_id() == id) {
209 attrib.set_buffer_id(0);
210 if (attrib.enabled()) {
233 VertexAttrib& attrib = vertex_attribs_[index]; local
234 if (attrib.enabled() != enabled) {
235 if (attrib.IsClientSide()) {
239 attrib.set_enabled(enabled)
253 VertexAttrib& attrib = vertex_attribs_[index]; local
269 const VertexAttrib* attrib = GetAttrib(index); local
302 VertexAttrib& attrib = vertex_attribs_[index]; local
311 const VertexAttrib* attrib = GetAttrib(index); local
323 const VertexAttrib* attrib = &vertex_attribs_[index]; local
502 const VertexArrayObject::VertexAttrib& attrib = vertex_attribs[ii]; local
519 const VertexArrayObject::VertexAttrib& attrib = vertex_attribs[ii]; local
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
VertexBuffer.cpp 92 bool VertexBufferInterface::storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue,
96 if (!mVertexBuffer->getSpaceRequired(attrib, count, instances, &spaceRequired))
112 if (!mVertexBuffer->storeVertexAttributes(attrib, currentValue, start, count, instances, mWritePosition))
157 bool VertexBufferInterface::directStoragePossible(const gl::VertexAttribute &attrib,
160 gl::Buffer *buffer = attrib.mBoundBuffer.get();
174 if (attrib.mType != GL_FLOAT)
176 gl::VertexFormat vertexFormat(attrib, currentValue.Type);
179 getVertexBuffer()->getSpaceRequired(attrib, 1, 0, &outputElementSize);
185 bool isAligned = (static_cast<size_t>(attrib.stride()) % alignment == 0) &&
186 (static_cast<size_t>(attrib.mOffset) % alignment == 0)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_bld_interp.c 118 attrib_name(LLVMValueRef val, unsigned attrib, unsigned chan, const char *suffix)
120 if(attrib == 0)
123 lp_build_name(val, "input%u.%c%s", attrib - 1, "xyzw"[chan], suffix);
169 unsigned attrib; local
171 for (attrib = 0; attrib < bld->num_attribs; ++attrib) {
183 const unsigned interp = bld->interp[attrib];
185 attrib * TGSI_NUM_CHANNELS);
206 attrib_name(dadxaos, attrib, 0, ".dadxaos")
249 unsigned attrib; local
371 unsigned attrib; local
561 unsigned attrib; local
703 unsigned attrib; local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_interp.c 118 attrib_name(LLVMValueRef val, unsigned attrib, unsigned chan, const char *suffix)
120 if(attrib == 0)
123 lp_build_name(val, "input%u.%c%s", attrib - 1, "xyzw"[chan], suffix);
169 unsigned attrib; local
171 for (attrib = 0; attrib < bld->num_attribs; ++attrib) {
183 const unsigned interp = bld->interp[attrib];
185 attrib * TGSI_NUM_CHANNELS);
206 attrib_name(dadxaos, attrib, 0, ".dadxaos")
249 unsigned attrib; local
371 unsigned attrib; local
561 unsigned attrib; local
703 unsigned attrib; local
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
VertexBuffer9.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, unsigned int *outSpaceRequired) const;
48 static bool spaceRequired(const gl::VertexAttribute &attrib, std::size_t count, GLsizei instances,
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_feedback.c 40 const GLfloat *vtc = v->attrib[FRAG_ATTRIB_TEX0];
41 const GLfloat *color = v->attrib[FRAG_ATTRIB_COL0];
43 win[0] = v->attrib[FRAG_ATTRIB_WPOS][0];
44 win[1] = v->attrib[FRAG_ATTRIB_WPOS][1];
45 win[2] = v->attrib[FRAG_ATTRIB_WPOS][2] / ctx->DrawBuffer->_DepthMaxF;
46 win[3] = 1.0F / v->attrib[FRAG_ATTRIB_WPOS][3];
117 _mesa_update_hitflag( ctx, v0->attrib[FRAG_ATTRIB_WPOS][2] * zs );
118 _mesa_update_hitflag( ctx, v1->attrib[FRAG_ATTRIB_WPOS][2] * zs );
119 _mesa_update_hitflag( ctx, v2->attrib[FRAG_ATTRIB_WPOS][2] * zs );
128 _mesa_update_hitflag( ctx, v0->attrib[FRAG_ATTRIB_WPOS][2] * zs )
    [all...]
s_aatritemp.h 42 const GLfloat *p0 = v0->attrib[FRAG_ATTRIB_WPOS];
43 const GLfloat *p1 = v1->attrib[FRAG_ATTRIB_WPOS];
44 const GLfloat *p2 = v2->attrib[FRAG_ATTRIB_WPOS];
70 GLfloat y0 = v0->attrib[FRAG_ATTRIB_WPOS][1];
71 GLfloat y1 = v1->attrib[FRAG_ATTRIB_WPOS][1];
72 GLfloat y2 = v2->attrib[FRAG_ATTRIB_WPOS][1];
97 majDx = vMax->attrib[FRAG_ATTRIB_WPOS][0] - vMin->attrib[FRAG_ATTRIB_WPOS][0];
98 majDy = vMax->attrib[FRAG_ATTRIB_WPOS][1] - vMin->attrib[FRAG_ATTRIB_WPOS][1]
    [all...]
  /external/chromium_org/v8/tools/testrunner/local/
junit_output.py 35 self.root.attrib["name"] = test_suite_name
39 testCaseElement.attrib["name"] = " ".join(test_name)
40 testCaseElement.attrib["time"] = str(round(test_duration, 3))
  /external/mesa3d/src/mesa/swrast/
s_feedback.c 40 const GLfloat *vtc = v->attrib[FRAG_ATTRIB_TEX0];
41 const GLfloat *color = v->attrib[FRAG_ATTRIB_COL0];
43 win[0] = v->attrib[FRAG_ATTRIB_WPOS][0];
44 win[1] = v->attrib[FRAG_ATTRIB_WPOS][1];
45 win[2] = v->attrib[FRAG_ATTRIB_WPOS][2] / ctx->DrawBuffer->_DepthMaxF;
46 win[3] = 1.0F / v->attrib[FRAG_ATTRIB_WPOS][3];
117 _mesa_update_hitflag( ctx, v0->attrib[FRAG_ATTRIB_WPOS][2] * zs );
118 _mesa_update_hitflag( ctx, v1->attrib[FRAG_ATTRIB_WPOS][2] * zs );
119 _mesa_update_hitflag( ctx, v2->attrib[FRAG_ATTRIB_WPOS][2] * zs );
128 _mesa_update_hitflag( ctx, v0->attrib[FRAG_ATTRIB_WPOS][2] * zs )
    [all...]
s_aatritemp.h 42 const GLfloat *p0 = v0->attrib[FRAG_ATTRIB_WPOS];
43 const GLfloat *p1 = v1->attrib[FRAG_ATTRIB_WPOS];
44 const GLfloat *p2 = v2->attrib[FRAG_ATTRIB_WPOS];
70 GLfloat y0 = v0->attrib[FRAG_ATTRIB_WPOS][1];
71 GLfloat y1 = v1->attrib[FRAG_ATTRIB_WPOS][1];
72 GLfloat y2 = v2->attrib[FRAG_ATTRIB_WPOS][1];
97 majDx = vMax->attrib[FRAG_ATTRIB_WPOS][0] - vMin->attrib[FRAG_ATTRIB_WPOS][0];
98 majDy = vMax->attrib[FRAG_ATTRIB_WPOS][1] - vMin->attrib[FRAG_ATTRIB_WPOS][1]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_vertex.h 91 } attrib[PIPE_MAX_SHADER_OUTPUTS]; member in struct:vertex_info
97 return offsetof(const struct vertex_info, attrib[a->num_attribs]);
120 * \param src_index indicates which post-transformed vertex attrib slot
131 assert(n < Elements(vinfo->attrib));
132 vinfo->attrib[n].emit = emit;
133 vinfo->attrib[n].interp_mode = interp;
134 vinfo->attrib[n].src_index = src_index;
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vertex.h 91 } attrib[PIPE_MAX_SHADER_OUTPUTS]; member in struct:vertex_info
97 return offsetof(const struct vertex_info, attrib[a->num_attribs]);
120 * \param src_index indicates which post-transformed vertex attrib slot
131 assert(n < Elements(vinfo->attrib));
132 vinfo->attrib[n].emit = emit;
133 vinfo->attrib[n].interp_mode = interp;
134 vinfo->attrib[n].src_index = src_index;
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttRuntimeInvisibleAnnotations.java 17 package com.android.dx.cf.attrib;
AttRuntimeInvisibleParameterAnnotations.java 17 package com.android.dx.cf.attrib;
AttRuntimeVisibleAnnotations.java 17 package com.android.dx.cf.attrib;
AttRuntimeVisibleParameterAnnotations.java 17 package com.android.dx.cf.attrib;
AttSignature.java 17 package com.android.dx.cf.attrib;
AttSourceFile.java 17 package com.android.dx.cf.attrib;
BaseAttribute.java 17 package com.android.dx.cf.attrib;
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast_setup/
ss_context.c 98 map[e].attrib = (ATTR); \
128 EMIT_ATTR( _TNL_ATTRIB_POS, EMIT_4F_VIEWPORT, attrib[FRAG_ATTRIB_WPOS] );
134 EMIT_ATTR( _TNL_ATTRIB_COLOR0, EMIT_4F, attrib[FRAG_ATTRIB_COL0]);
138 EMIT_ATTR( _TNL_ATTRIB_COLOR1, EMIT_4F, attrib[FRAG_ATTRIB_COL1]);
143 EMIT_ATTR( _TNL_ATTRIB_FOG, emit, attrib[FRAG_ATTRIB_FOGC]);
151 attrib[FRAG_ATTRIB_TEX0 + i] ); local
161 attrib[FRAG_ATTRIB_VAR0 + i] ); local
263 * Populate a swrast SWvertex from an attrib-style vertex.
274 dest->attrib[FRAG_ATTRIB_WPOS][0] = m[0] * tmp[0] + m[12];
275 dest->attrib[FRAG_ATTRIB_WPOS][1] = m[5] * tmp[1] + m[13]
    [all...]
  /external/mesa3d/src/mesa/swrast_setup/
ss_context.c 98 map[e].attrib = (ATTR); \
128 EMIT_ATTR( _TNL_ATTRIB_POS, EMIT_4F_VIEWPORT, attrib[FRAG_ATTRIB_WPOS] );
134 EMIT_ATTR( _TNL_ATTRIB_COLOR0, EMIT_4F, attrib[FRAG_ATTRIB_COL0]);
138 EMIT_ATTR( _TNL_ATTRIB_COLOR1, EMIT_4F, attrib[FRAG_ATTRIB_COL1]);
143 EMIT_ATTR( _TNL_ATTRIB_FOG, emit, attrib[FRAG_ATTRIB_FOGC]);
151 attrib[FRAG_ATTRIB_TEX0 + i] ); local
161 attrib[FRAG_ATTRIB_VAR0 + i] ); local
263 * Populate a swrast SWvertex from an attrib-style vertex.
274 dest->attrib[FRAG_ATTRIB_WPOS][0] = m[0] * tmp[0] + m[12];
275 dest->attrib[FRAG_ATTRIB_WPOS][1] = m[5] * tmp[1] + m[13]
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_gl.h 33 int ph_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value);

Completed in 839 milliseconds

12 3 4 5 6 7 8 91011>>