Searched refs:zValues (Results 1 - 10 of 10) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
H A Ds_drawpix.c648 GLuint *zValues; /* 32-bit Z values */ local in function:draw_depth_stencil_pixels
651 zValues = malloc(width * sizeof(GLuint));
652 if (!zValues) {
665 zValues, /* dest addr */
672 y + i, zValues);
676 _mesa_pack_uint_z_row(depthRb->Format, width, zValues, dst);
681 GLubyte *stencilValues = (GLubyte *) zValues; /* re-use buffer */
694 free(zValues);
H A Ds_depth.c169 GLint *zValues = (GLint *) span->array->z; /* sign change */ local in function:_swrast_depth_clamp_span
198 if (zValues[i] < min)
199 zValues[i] = min;
200 if (zValues[i] > max)
201 zValues[i] = max;
H A Ds_zoom.c284 const GLuint *zValues = (const GLuint *) src; local in function:zoom_span
290 zoomed.array->z[i] = zValues[j];
/xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
H A Ds_drawpix.c673 GLuint *zValues; /* 32-bit Z values */ local in function:draw_depth_stencil_pixels
676 zValues = malloc(width * sizeof(GLuint));
677 if (!zValues) {
690 zValues, /* dest addr */
697 y + i, zValues);
701 _mesa_pack_uint_z_row(depthRb->Format, width, zValues, dst);
706 GLubyte *stencilValues = (GLubyte *) zValues; /* re-use buffer */
719 free(zValues);
H A Ds_depth.c169 GLint *zValues = (GLint *) span->array->z; /* sign change */ local in function:_swrast_depth_clamp_span
198 if (zValues[i] < min)
199 zValues[i] = min;
200 if (zValues[i] > max)
201 zValues[i] = max;
H A Ds_zoom.c284 const GLuint *zValues = (const GLuint *) src; local in function:zoom_span
290 zoomed.array->z[i] = zValues[j];
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dpack.c864 GLuint *zValues = (GLuint *) dest; local in function:_mesa_unpack_depth_span
871 zValues[i] = value & 0xffffff00;
953 GLuint *zValues = (GLuint *) dest; local in function:_mesa_unpack_depth_span
958 zValues[i] = (GLuint) (depthValues[i] * (GLfloat) depthMax);
966 zValues[i] = 0xffffffff;
968 zValues[i] = (GLuint) z;
973 GLushort *zValues = (GLushort *) dest; local in function:_mesa_unpack_depth_span
977 zValues[i] = (GLushort) (depthValues[i] * (GLfloat) depthMax);
984 GLfloat *zValues = (GLfloat*) dest; local in function:_mesa_unpack_depth_span
987 zValues[
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dpack.c865 GLuint *zValues = (GLuint *) dest; local in function:_mesa_unpack_depth_span
872 zValues[i] = value & 0xffffff00;
954 GLuint *zValues = (GLuint *) dest; local in function:_mesa_unpack_depth_span
959 zValues[i] = (GLuint) (depthValues[i] * (GLfloat) depthMax);
967 zValues[i] = 0xffffffff;
969 zValues[i] = (GLuint) z;
974 GLushort *zValues = (GLushort *) dest; local in function:_mesa_unpack_depth_span
978 zValues[i] = (GLushort) (depthValues[i] * (GLfloat) depthMax);
985 GLfloat *zValues = (GLfloat*) dest; local in function:_mesa_unpack_depth_span
988 zValues[
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
H A Dst_cb_drawpixels.c956 GLuint *zValues; local in function:draw_stencil_pixels
992 zValues = malloc(width * sizeof(GLuint));
994 if (sValues && zValues) {
997 GLfloat *zValuesFloat = (GLfloat*)zValues;
1012 _mesa_unpack_depth_span(ctx, width, ztype, zValues,
1047 dest[k] = zValues[k] | (sValues[k] << 24);
1065 dest[k] = (zValues[k] << 8) | (sValues[k] & 0xff);
1108 free(zValues);
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
H A Dst_cb_drawpixels.c976 GLuint *zValues; local in function:draw_stencil_pixels
1004 zValues = malloc(width * sizeof(GLuint));
1006 if (sValues && zValues) {
1009 GLfloat *zValuesFloat = (GLfloat*)zValues;
1024 _mesa_unpack_depth_span(ctx, width, ztype, zValues,
1059 dest[k] = zValues[k] | (sValues[k] << 24);
1077 dest[k] = (zValues[k] << 8) | (sValues[k] & 0xff);
1120 free(zValues);

Completed in 21 milliseconds