HomeSort by relevance Sort by last modified time
    Searched refs:depthValues (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
pixeltransfer.h 50 GLfloat depthValues[]);
54 GLuint depthValues[]);
pixeltransfer.c 130 GLfloat depthValues[])
136 GLfloat d = depthValues[i] * scale + bias;
137 depthValues[i] = CLAMP(d, 0.0F, 1.0F);
144 GLuint depthValues[])
151 GLdouble d = (GLdouble) depthValues[i] * scale + bias;
153 depthValues[i] = (GLuint) d;
readpix.c 121 GLfloat *depthValues;
146 depthValues = (GLfloat *) malloc(width * sizeof(GLfloat));
148 if (depthValues) {
151 _mesa_unpack_float_z_row(rb->Format, width, map, depthValues);
152 _mesa_pack_depth_span(ctx, width, dst, type, depthValues, packing);
162 free(depthValues);
pack.c     [all...]
  /external/mesa3d/src/mesa/main/
pixeltransfer.h 50 GLfloat depthValues[]);
54 GLuint depthValues[]);
pixeltransfer.c 130 GLfloat depthValues[])
136 GLfloat d = depthValues[i] * scale + bias;
137 depthValues[i] = CLAMP(d, 0.0F, 1.0F);
144 GLuint depthValues[])
151 GLdouble d = (GLdouble) depthValues[i] * scale + bias;
153 depthValues[i] = (GLuint) d;
readpix.c 121 GLfloat *depthValues;
146 depthValues = (GLfloat *) malloc(width * sizeof(GLfloat));
148 if (depthValues) {
151 _mesa_unpack_float_z_row(rb->Format, width, map, depthValues);
152 _mesa_pack_depth_span(ctx, width, dst, type, depthValues, packing);
162 free(depthValues);
pack.c     [all...]

Completed in 110 milliseconds