HomeSort by relevance Sort by last modified time
    Searched defs:zValues (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_zoom.c 284 const GLuint *zValues = (const GLuint *) src;
290 zoomed.array->z[i] = zValues[j];
s_depth.c 169 GLint *zValues = (GLint *) span->array->z; /* sign change */
198 if (zValues[i] < min)
199 zValues[i] = min;
200 if (zValues[i] > max)
201 zValues[i] = max;
248 const GLuint zvalues[], const GLubyte mask[])
260 *dst = zvalues[i];
271 packZ(zvalues + i, dst);
s_drawpix.c 592 GLuint *zValues; /* 32-bit Z values */
595 zValues = (GLuint *) malloc(width * sizeof(GLuint));
596 if (!zValues) {
609 zValues, /* dest addr */
616 y + i, zValues);
620 _mesa_pack_uint_z_row(depthRb->Format, width, zValues, dst);
625 GLubyte *stencilValues = (GLubyte *) zValues; /* re-use buffer */
638 free(zValues);
  /external/mesa3d/src/mesa/swrast/
s_zoom.c 284 const GLuint *zValues = (const GLuint *) src;
290 zoomed.array->z[i] = zValues[j];
s_depth.c 169 GLint *zValues = (GLint *) span->array->z; /* sign change */
198 if (zValues[i] < min)
199 zValues[i] = min;
200 if (zValues[i] > max)
201 zValues[i] = max;
248 const GLuint zvalues[], const GLubyte mask[])
260 *dst = zvalues[i];
271 packZ(zvalues + i, dst);
s_drawpix.c 592 GLuint *zValues; /* 32-bit Z values */
595 zValues = (GLuint *) malloc(width * sizeof(GLuint));
596 if (!zValues) {
609 zValues, /* dest addr */
616 y + i, zValues);
620 _mesa_pack_uint_z_row(depthRb->Format, width, zValues, dst);
625 GLubyte *stencilValues = (GLubyte *) zValues; /* re-use buffer */
638 free(zValues);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
pack.c     [all...]