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

  /external/mesa3d/src/glx/
pixel.c 90 GLint skipRows = state->storeUnpack.skipRows;
109 start = ((const GLubyte *) userdata) + skipRows * rowSize +
173 GLint skipRows = state->storeUnpack.skipRows;
211 skipRows * rowSize + skipPixels * groupSize;
278 GLint skipRows = state->storePack.skipRows;
308 start = ((GLubyte *) userdata) + skipRows * rowSize +
400 GLint skipRows = state->storePack.skipRows
    [all...]
pixelstore.c 102 state->storePack.skipRows = a;
163 state->storeUnpack.skipRows = a;
248 state->storePack.skipRows = param;
303 state->storeUnpack.skipRows = param;
single2.c 255 *data = (GLintptr) state->storePack.skipRows;
279 *data = (GLintptr) state->storeUnpack.skipRows;
glxclient.h 187 GLuint skipRows;
  /external/skia/src/codec/
SkBmpRLECodec.h 92 bool skipRows(int count) override;
SkBmpCodec.h 135 virtual bool skipRows(int count);
SkBmpCodec.cpp 639 bool SkBmpCodec::skipRows(int count) {
645 return this->skipRows(count);
SkBmpRLECodec.cpp 523 bool SkBmpRLECodec::skipRows(int count) {
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixVector.h 414 Index skipRows = 0;
433 while (skipRows<LhsPacketSize &&
434 alignedStart != ((lhsAlignmentOffset + alignmentStep*skipRows)%LhsPacketSize))
435 ++skipRows;
436 if (skipRows==LhsPacketSize)
440 skipRows = 0;
444 skipRows = (std::min)(skipRows,Index(rows));
449 || (skipRows + rowsAtOnce >= rows)
451 || (size_t(firstLhs+alignedStart+lhsStride*skipRows)%sizeof(LhsPacket))==0);*
    [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) {}
176 GLint skipRows;
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) {
205 (skipImages * height + skipRows);
  /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)
99 , m_skipRows (skipRows)
  /external/deqp/modules/gles31/functional/
es31fTextureSpecificationTests.cpp 408 int skipRows,
417 , m_skipRows (skipRows)
495 int skipRows,
510 , m_skipRows (skipRows)
874 int skipRows;
908 parameterCases[ndx].skipRows,
    [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
Context.h 537 void setUnpackSkipRows(GLint skipRows);
545 void setPackSkipRows(GLint skipRows);
Context.cpp 171 mState.unpackInfo.skipRows = 0;
890 void Context::setPackSkipRows(GLint skipRows)
892 mState.packSkipRows = skipRows;
915 void Context::setUnpackSkipRows(GLint skipRows)
917 mState.unpackInfo.skipRows = skipRows;
    [all...]
  /external/skia/src/gpu/vk/
GrVkGpu.cpp     [all...]

Completed in 661 milliseconds