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

  /external/mesa3d/src/glx/
pixel.c 89 GLint skipPixels = state->storeUnpack.skipPixels;
110 ((skipPixels * components) >> 3);
111 bitOffset = (skipPixels * components) & 7;
172 GLint skipPixels = state->storeUnpack.skipPixels;
211 skipRows * rowSize + skipPixels * groupSize;
277 GLint skipPixels = state->storePack.skipPixels;
309 ((skipPixels * components) >> 3)
    [all...]
pixelstore.c 110 state->storePack.skipPixels = a;
171 state->storeUnpack.skipPixels = a;
255 state->storePack.skipPixels = param;
310 state->storeUnpack.skipPixels = param;
single2.c 258 *data = (GLintptr) state->storePack.skipPixels;
282 *data = (GLintptr) state->storeUnpack.skipPixels;
glxclient.h 188 GLuint skipPixels;
  /external/mesa3d/src/mesa/swrast/
s_drawpix.c 370 GLint skipPixels = 0;
373 while (skipPixels < width) {
374 const GLint spanWidth = MIN2(width - skipPixels, SWRAST_MAX_WIDTH);
381 row, skipPixels);
386 span.x = x + skipPixels;
400 skipPixels += spanWidth;
451 GLint skipPixels = 0;
503 while (skipPixels < width) {
504 const GLint spanWidth = MIN2(width - skipPixels, SWRAST_MAX_WIDTH);
508 type, 0, skipPixels);
    [all...]
  /external/swiftshader/src/OpenGL/common/
Image.hpp 48 size_t ComputePackingOffset(GLenum format, GLenum type, GLsizei width, GLsizei height, GLint alignment, GLint skipImages, GLint skipRows, GLint skipPixels);
170 UnpackInfo() : alignment(4), rowLength(0), imageHeight(0), skipPixels(0), skipRows(0), skipImages(0) {}
175 GLint skipPixels;
Image.cpp 1103 size_t ComputePackingOffset(GLenum format, GLenum type, GLsizei width, GLsizei height, GLint alignment, GLint skipImages, GLint skipRows, GLint skipPixels)
1106 return (skipImages * height + skipRows) * pitchB + skipPixels * ComputePixelSize(format, type);
    [all...]
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
GLESTextureUtils.cpp 202 static int computePackingOffset(GLenum format, GLenum type, GLsizei width, GLsizei height, int align, int skipPixels, int skipRows, int skipImages) {
206 return packingOffsetRows * alignedPitch + skipPixels * computePixelSize(format, type);
  /external/deqp/modules/gles3/functional/
es3fTextureSpecificationTests.cpp     [all...]
es3fReadPixelsTests.cpp 69 ReadPixelsTest (Context& context, const char* name, const char* description, int flags, int alignment, GLint rowLength, GLint skipRows, GLint skipPixels, GLenum format = GL_RGBA, GLenum type = GL_UNSIGNED_BYTE);
92 ReadPixelsTest::ReadPixelsTest (Context& context, const char* name, const char* description, int flags, int alignment, GLint rowLength, GLint skipRows, GLint skipPixels, GLenum format, GLenum type)
100 , m_skipPixels (skipPixels)
  /external/deqp/modules/gles31/functional/
es31fTextureSpecificationTests.cpp 409 int skipPixels,
418 , m_skipPixels (skipPixels)
496 int skipPixels,
511 , m_skipPixels (skipPixels)
875 int skipPixels;
909 parameterCases[ndx].skipPixels,
    [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
Context.h 536 void setUnpackSkipPixels(GLint skipPixels);
544 void setPackSkipPixels(GLint skipPixels);
Context.cpp 170 mState.unpackInfo.skipPixels = 0;
885 void Context::setPackSkipPixels(GLint skipPixels)
887 mState.packSkipPixels = skipPixels;
910 void Context::setUnpackSkipPixels(GLint skipPixels)
912 mState.unpackInfo.skipPixels = skipPixels;
    [all...]

Completed in 2805 milliseconds