/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/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()
|
D | angletypes.h | 459 GLint skipRows = 0; member
|
/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/skia/third_party/externals/swiftshader/src/OpenGL/common/ |
D | Image.hpp | 49 GLint skipRows = 0; member
|
D | Image.cpp | 526 …return (storageModes.skipImages * height + storageModes.skipRows) * pitchB + storageModes.skipPixe… in ComputePackingOffset()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
D | StateManagerGL.cpp | 559 if (mUnpackSkipRows != unpack.skipRows) in setPixelUnpackState() 561 mUnpackSkipRows = unpack.skipRows; in setPixelUnpackState() 626 if (mPackSkipRows != pack.skipRows) in setPixelPackState() 628 mPackSkipRows = pack.skipRows; in setPixelPackState()
|
D | FramebufferGL.cpp | 721 (packState.skipRows != 0 || packState.skipPixels != 0); in readPixels()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
D | frame_capture_utils.cpp | 499 json->addScalar("SkipRows", pixelPackState.skipRows); in SerializePixelPackState() 511 json->addScalar("SkipRows", pixelUnpackState.skipRows); in SerializePixelUnpackState()
|
D | FrameCapture.cpp | 3870 if (currentPackState.skipRows != apiState.getPackSkipRows()) in CaptureMidExecutionSetup() 3873 currentPackState.skipRows = apiState.getPackSkipRows(); in CaptureMidExecutionSetup() 3892 if (currentUnpackState.skipRows != apiState.getUnpackSkipRows()) in CaptureMidExecutionSetup() 3896 currentUnpackState.skipRows = apiState.getUnpackSkipRows(); in CaptureMidExecutionSetup()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
D | Image9.cpp | 495 ASSERT(unpack.skipRows == 0); in loadData()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/ |
D | TextureD3D.cpp | 365 return unpackBuffer != nullptr && unpack.skipRows == 0 && unpack.skipPixels == 0 && in isFastUnpackable() 379 bool check = (unpack.skipRows != 0 || unpack.skipPixels != 0 || unpack.imageHeight != 0 || in fastUnpackPixels()
|