/third_party/mesa3d/src/glx/ |
D | pixel.c | 90 GLint skipRows = state->storeUnpack.skipRows; in FillBitmap() local 109 start = ((const GLubyte *) userdata) + skipRows * rowSize + in FillBitmap() 173 GLint skipRows = state->storeUnpack.skipRows; in __glFillImage() local 211 skipRows * rowSize + skipPixels * groupSize; in __glFillImage() 278 GLint skipRows = state->storePack.skipRows; in EmptyBitmap() local 308 start = ((GLubyte *) userdata) + skipRows * rowSize + in EmptyBitmap() 400 GLint skipRows = state->storePack.skipRows; in __glEmptyImage() local 438 skipRows * rowSize + skipPixels * groupSize; in __glEmptyImage()
|
D | pixelstore.c | 102 state->storePack.skipRows = a; in __indirect_glPixelStoref() 163 state->storeUnpack.skipRows = a; in __indirect_glPixelStoref() 248 state->storePack.skipRows = param; in __indirect_glPixelStorei() 303 state->storeUnpack.skipRows = param; in __indirect_glPixelStorei()
|
D | single2.c | 255 *data = (GLintptr) state->storePack.skipRows; in get_client_data() 279 *data = (GLintptr) state->storeUnpack.skipRows; in get_client_data()
|
D | glxclient.h | 193 GLuint skipRows; member
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
D | es3fTextureSpecificationTests.cpp | 1066 …esc, deUint32 internalFormat, int width, int height, int rowLength, int skipRows, int skipPixels, … in TexImage2DParamsCase() argument 1070 , m_skipRows (skipRows) in TexImage2DParamsCase() 1130 int skipRows, in TexImage3DParamsCase() argument 1138 , m_skipRows (skipRows) in TexImage3DParamsCase() 1360 int skipRows, in TexSubImage2DParamsCase() argument 1370 , m_skipRows (skipRows) in TexSubImage2DParamsCase() 1779 int skipRows, in TexSubImage3DParamsCase() argument 1793 , m_skipRows (skipRows) in TexSubImage3DParamsCase() 2298 int skipRows, in TexImage2DBufferCase() argument 2305 , m_skipRows (skipRows) in TexImage2DBufferCase() [all …]
|
D | es3fReadPixelsTests.cpp | 69 …nst char* description, int flags, int alignment, GLint rowLength, GLint skipRows, GLint skipPixels… 92 …nst char* description, int flags, int alignment, GLint rowLength, GLint skipRows, GLint skipPixels… in ReadPixelsTest() argument 99 , m_skipRows (skipRows) in ReadPixelsTest()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fTextureSpecificationTests.cpp | 412 int skipRows, in TexImageCubeArrayBufferCase() argument 421 , m_skipRows (skipRows) in TexImageCubeArrayBufferCase() 499 int skipRows, in TexSubImageCubeArrayBufferCase() argument 514 , m_skipRows (skipRows) in TexSubImageCubeArrayBufferCase() 878 int skipRows; in init() member 912 parameterCases[ndx].skipRows, in init() 967 int skipRows; in init() member 1017 paramCases[ndx].skipRows, in init()
|
/third_party/skia/src/codec/ |
D | SkBmpRLECodec.h | 94 bool skipRows(int count) override;
|
D | SkBmpCodec.h | 134 virtual bool skipRows(int count);
|
D | SkBmpCodec.cpp | 646 bool SkBmpCodec::skipRows(int count) { in skipRows() function in SkBmpCodec 652 return this->skipRows(count); in onSkipScanlines()
|
D | SkBmpRLECodec.cpp | 526 bool SkBmpRLECodec::skipRows(int count) { in skipRows() function in SkBmpRLECodec
|
/third_party/flutter/skia/src/codec/ |
D | SkBmpRLECodec.h | 94 bool skipRows(int count) override;
|
D | SkBmpCodec.h | 134 virtual bool skipRows(int count);
|
D | SkBmpCodec.cpp | 643 bool SkBmpCodec::skipRows(int count) { in skipRows() function in SkBmpCodec 649 return this->skipRows(count); in onSkipScanlines()
|
D | SkBmpRLECodec.cpp | 523 bool SkBmpRLECodec::skipRows(int count) { in skipRows() function in SkBmpRLECodec
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | State.h | 435 void setPackSkipRows(GLint skipRows); 436 GLint getPackSkipRows() const { return mPack.skipRows; } in getPackSkipRows() 451 void setUnpackSkipRows(GLint skipRows); 452 GLint getUnpackSkipRows() const { return mUnpack.skipRows; } in getUnpackSkipRows()
|
D | State.cpp | 1724 void State::setPackSkipRows(GLint skipRows) in setPackSkipRows() argument 1726 mPack.skipRows = skipRows; in setPackSkipRows() 1760 void State::setUnpackSkipRows(GLint skipRows) in setUnpackSkipRows() argument 1762 mUnpack.skipRows = skipRows; in setUnpackSkipRows() 2101 *params = mPack.skipRows; in getIntegerv() 2119 *params = mUnpack.skipRows; in getIntegerv()
|
D | angletypes.h | 367 GLint skipRows = 0; member
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
D | glcPackedPixelsTests.cpp | 575 int skipRows; // (UN)PACK_SKIP_ROWS member 895 m_initialPackProperties.skipRows = 0; in resetInitialStorageModes() 904 m_initialUnpackProperties.skipRows = 0; in resetInitialStorageModes() 925 gl.pixelStorei(GL_PACK_SKIP_ROWS, pp.skipRows); in applyInitialStorageModes() 930 gl.pixelStorei(GL_UNPACK_SKIP_ROWS, up.skipRows); in applyInitialStorageModes() 1205 rowCount = GRADIENT_HEIGHT + m_unpackProperties.skipRows; in makeGradient() 1258 if ((k == depth - 1) && (m_unpackProperties.skipRows <= j) && in makeGradient() 1259 (j < m_unpackProperties.skipRows + GRADIENT_HEIGHT) && (m_unpackProperties.skipPixels <= x) && in makeGradient() 2188 props.rowCount = GRADIENT_HEIGHT + props.skipRows; in readOutputData() 2992 …int skipBottom = ((props.skipImages * props.rowCount + props.skipRows) * props.elementsInRow) * pr… in stripBuffer() [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | State.h | 547 void setPackSkipRows(GLint skipRows); 548 GLint getPackSkipRows() const { return mPack.skipRows; } in getPackSkipRows() 563 void setUnpackSkipRows(GLint skipRows); 564 GLint getUnpackSkipRows() const { return mUnpack.skipRows; } in getUnpackSkipRows()
|
D | State.cpp | 2285 void State::setPackSkipRows(GLint skipRows) in setPackSkipRows() argument 2287 mPack.skipRows = skipRows; in setPackSkipRows() 2321 void State::setUnpackSkipRows(GLint skipRows) in setUnpackSkipRows() argument 2323 mUnpack.skipRows = skipRows; in setUnpackSkipRows() 2677 *params = mPack.skipRows; in getIntegerv() 2695 *params = mUnpack.skipRows; in getIntegerv()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
D | Context.cpp | 895 void Context::setPackSkipRows(GLint skipRows) in setPackSkipRows() argument 897 mState.packParameters.skipRows = skipRows; in setPackSkipRows() 915 void Context::setUnpackSkipRows(GLint skipRows) in setUnpackSkipRows() argument 917 mState.unpackParameters.skipRows = skipRows; in setUnpackSkipRows() 1593 + (mState.unpackParameters.skipRows + (height - 1)) * bytesPerRow in getRequiredBufferSize() 2350 *params = mState.packParameters.skipRows; in getIntegerv() 2390 *params = mState.unpackParameters.skipRows; in getIntegerv()
|
D | Context.h | 507 void setUnpackSkipRows(GLint skipRows); 514 void setPackSkipRows(GLint skipRows);
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
D | StateManagerGL.cpp | 467 if (mUnpackSkipRows != unpack.skipRows) in setPixelUnpackState() 469 mUnpackSkipRows = unpack.skipRows; in setPixelUnpackState() 528 if (mPackSkipRows != pack.skipRows) in setPixelPackState() 530 mPackSkipRows = pack.skipRows; in setPixelPackState()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/common/ |
D | Image.hpp | 49 GLint skipRows = 0; member
|