HomeSort by relevance Sort by last modified time
    Searched refs:GLushort (Results 1 - 25 of 376) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
lines.h 44 _mesa_LineStipple( GLint factor, GLushort pattern );
format_pack.c 455 GLushort *d = ((GLushort *) dst);
472 GLushort *d = ((GLushort *) dst);
482 GLushort *d = ((GLushort *) dst);
499 GLushort *d = ((GLushort *) dst);
506 GLushort *d = ((GLushort *) dst)
    [all...]
pack.c 485 #define DST_TYPE GLushort
582 GLushort *dst = (GLushort *) dstAddr;
594 GLushort *dst = (GLushort *) dstAddr;
606 GLushort *dst = (GLushort *) dstAddr;
615 GLushort *dst = (GLushort *) dstAddr;
624 GLushort *dst = (GLushort *) dstAddr
    [all...]
format_unpack.c 223 const GLushort *s = ((const GLushort *) src);
236 const GLushort *s = ((const GLushort *) src);
250 const GLushort *s = ((const GLushort *) src);
263 const GLushort *s = ((const GLushort *) src);
276 const GLushort *s = ((const GLushort *) src)
    [all...]
  /external/mesa3d/src/mesa/main/
lines.h 44 _mesa_LineStipple( GLint factor, GLushort pattern );
format_pack.c 455 GLushort *d = ((GLushort *) dst);
472 GLushort *d = ((GLushort *) dst);
482 GLushort *d = ((GLushort *) dst);
499 GLushort *d = ((GLushort *) dst);
506 GLushort *d = ((GLushort *) dst)
    [all...]
pack.c 485 #define DST_TYPE GLushort
582 GLushort *dst = (GLushort *) dstAddr;
594 GLushort *dst = (GLushort *) dstAddr;
606 GLushort *dst = (GLushort *) dstAddr;
615 GLushort *dst = (GLushort *) dstAddr;
624 GLushort *dst = (GLushort *) dstAddr
    [all...]
format_unpack.c 223 const GLushort *s = ((const GLushort *) src);
236 const GLushort *s = ((const GLushort *) src);
250 const GLushort *s = ((const GLushort *) src);
263 const GLushort *s = ((const GLushort *) src);
276 const GLushort *s = ((const GLushort *) src)
    [all...]
  /external/chromium_org/third_party/angle/samples/angle/sample_util/
geometry_utils.h 19 std::vector<GLushort> indices;
29 std::vector<GLushort> indices;
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_masking.c 72 const GLushort rMask = ctx->Color.ColorMask[buf][RCOMP] ? 0xffff : 0x0;
73 const GLushort gMask = ctx->Color.ColorMask[buf][GCOMP] ? 0xffff : 0x0;
74 const GLushort bMask = ctx->Color.ColorMask[buf][BCOMP] ? 0xffff : 0x0;
75 const GLushort aMask = ctx->Color.ColorMask[buf][ACOMP] ? 0xffff : 0x0;
76 const GLushort (*dst)[4] = (const GLushort (*)[4]) rbPixels;
77 GLushort (*src)[4] = span->array->rgba16;
s_texfetch_tmp.h 94 const GLushort *src = TEXEL_ADDR(GLushort, texImage, i, j, k, 1);
561 const GLushort *src = TEXEL_ADDR(GLushort, texImage, i, j, k, 1);
562 const GLushort s = *src;
578 const GLushort *src = TEXEL_ADDR(GLushort, texImage, i, j, k, 1);
579 const GLushort s = (*src >> 8) | (*src << 8); /* byte swap */
595 const GLushort *src = TEXEL_ADDR(GLushort, texImage, i, j, k, 1)
    [all...]
s_blend.c 88 bytes = 4 * n * sizeof(GLushort);
169 GLushort (*rgba)[4] = (GLushort (*)[4]) src;
170 const GLushort (*dest)[4] = (const GLushort (*)[4]) dst;
192 GLushort r = (GLushort) ((rgba[i][RCOMP] - dest[i][RCOMP]) * tt + dest[i][RCOMP]);
193 GLushort g = (GLushort) ((rgba[i][GCOMP] - dest[i][GCOMP]) * tt + dest[i][GCOMP]);
194 GLushort b = (GLushort) ((rgba[i][BCOMP] - dest[i][BCOMP]) * tt + dest[i][BCOMP])
    [all...]
s_chan.h 55 typedef GLushort GLchan;
96 #define CHAN_TO_USHORT(c) ((GLushort) (CLAMP((c), 0.0f, 1.0f) * 65535.0))
s_fog.c 86 * \param TYPE either GLubyte, GLushort or GLfloat.
172 GLushort (*rgba)[4] = span->array->rgba16;
173 FOG_LOOP(GLushort, LINEAR_FOG);
191 GLushort (*rgba)[4] = span->array->rgba16;
192 FOG_LOOP(GLushort, EXP_FOG);
210 GLushort (*rgba)[4] = span->array->rgba16;
211 FOG_LOOP(GLushort, EXP2_FOG);
235 GLushort (*rgba)[4] = span->array->rgba16;
236 FOG_LOOP(GLushort, BLEND_FOG);
  /external/mesa3d/src/mesa/swrast/
s_masking.c 72 const GLushort rMask = ctx->Color.ColorMask[buf][RCOMP] ? 0xffff : 0x0;
73 const GLushort gMask = ctx->Color.ColorMask[buf][GCOMP] ? 0xffff : 0x0;
74 const GLushort bMask = ctx->Color.ColorMask[buf][BCOMP] ? 0xffff : 0x0;
75 const GLushort aMask = ctx->Color.ColorMask[buf][ACOMP] ? 0xffff : 0x0;
76 const GLushort (*dst)[4] = (const GLushort (*)[4]) rbPixels;
77 GLushort (*src)[4] = span->array->rgba16;
s_texfetch_tmp.h 94 const GLushort *src = TEXEL_ADDR(GLushort, texImage, i, j, k, 1);
561 const GLushort *src = TEXEL_ADDR(GLushort, texImage, i, j, k, 1);
562 const GLushort s = *src;
578 const GLushort *src = TEXEL_ADDR(GLushort, texImage, i, j, k, 1);
579 const GLushort s = (*src >> 8) | (*src << 8); /* byte swap */
595 const GLushort *src = TEXEL_ADDR(GLushort, texImage, i, j, k, 1)
    [all...]
s_blend.c 88 bytes = 4 * n * sizeof(GLushort);
169 GLushort (*rgba)[4] = (GLushort (*)[4]) src;
170 const GLushort (*dest)[4] = (const GLushort (*)[4]) dst;
192 GLushort r = (GLushort) ((rgba[i][RCOMP] - dest[i][RCOMP]) * tt + dest[i][RCOMP]);
193 GLushort g = (GLushort) ((rgba[i][GCOMP] - dest[i][GCOMP]) * tt + dest[i][GCOMP]);
194 GLushort b = (GLushort) ((rgba[i][BCOMP] - dest[i][BCOMP]) * tt + dest[i][BCOMP])
    [all...]
s_chan.h 55 typedef GLushort GLchan;
96 #define CHAN_TO_USHORT(c) ((GLushort) (CLAMP((c), 0.0f, 1.0f) * 65535.0))
s_fog.c 86 * \param TYPE either GLubyte, GLushort or GLfloat.
172 GLushort (*rgba)[4] = span->array->rgba16;
173 FOG_LOOP(GLushort, LINEAR_FOG);
191 GLushort (*rgba)[4] = span->array->rgba16;
192 FOG_LOOP(GLushort, EXP_FOG);
210 GLushort (*rgba)[4] = span->array->rgba16;
211 FOG_LOOP(GLushort, EXP2_FOG);
235 GLushort (*rgba)[4] = span->array->rgba16;
236 FOG_LOOP(GLushort, BLEND_FOG);
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
gl_base_types.h 39 typedef unsigned short GLushort;
  /external/deqp/framework/opengl/wrapper/
glwDefs.cpp 37 DE_STATIC_ASSERT(sizeof(GLushort) == 2);
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
gl_base_types.h 39 typedef unsigned short GLushort;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_array.c 49 EXTRACT_FUNC(GLushort, unsigned, 1);
50 EXTRACT_FUNC(GLushort, float, USHRT_MAX);
78 *extract_u = EXTRACT(GLushort, unsigned);
79 *extract_f = EXTRACT(GLushort, float);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_array.c 49 EXTRACT_FUNC(GLushort, unsigned, 1);
50 EXTRACT_FUNC(GLushort, float, USHRT_MAX);
78 *extract_u = EXTRACT(GLushort, unsigned);
79 *extract_f = EXTRACT(GLushort, float);
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
IndexDataManager.cpp 64 GLushort *out = static_cast<GLushort*>(output);
80 memcpy(output, input, count * sizeof(GLushort));
84 const GLushort *in = static_cast<const GLushort*>(input);
122 computeRange(static_cast<const GLushort*>(indices), count, minIndex, maxIndex);
153 case GL_UNSIGNED_SHORT: alignedOffset = (offset % sizeof(GLushort) == 0); break;

Completed in 756 milliseconds

1 2 3 4 5 6 7 8 91011>>