/external/mesa3d/src/glx/ |
D | pixel.c | 89 GLint skipPixels = state->storeUnpack.skipPixels; in FillBitmap() local 110 ((skipPixels * components) >> 3); in FillBitmap() 111 bitOffset = (skipPixels * components) & 7; in FillBitmap() 172 GLint skipPixels = state->storeUnpack.skipPixels; in __glFillImage() local 211 skipRows * rowSize + skipPixels * groupSize; in __glFillImage() 277 GLint skipPixels = state->storePack.skipPixels; in EmptyBitmap() local 309 ((skipPixels * components) >> 3); in EmptyBitmap() 310 bitOffset = (skipPixels * components) & 7; in EmptyBitmap() 399 GLint skipPixels = state->storePack.skipPixels; in __glEmptyImage() local 438 skipRows * rowSize + skipPixels * groupSize; in __glEmptyImage()
|
D | pixelstore.c | 110 state->storePack.skipPixels = a; in __indirect_glPixelStoref() 171 state->storeUnpack.skipPixels = a; in __indirect_glPixelStoref() 255 state->storePack.skipPixels = param; in __indirect_glPixelStorei() 310 state->storeUnpack.skipPixels = param; in __indirect_glPixelStorei()
|
D | single2.c | 258 *data = (GLintptr) state->storePack.skipPixels; in get_client_data() 282 *data = (GLintptr) state->storeUnpack.skipPixels; in get_client_data()
|
D | glxclient.h | 188 GLuint skipPixels; member
|
/external/mesa3d/src/mesa/swrast/ |
D | s_drawpix.c | 370 GLint skipPixels = 0; in draw_depth_pixels() local 373 while (skipPixels < width) { in draw_depth_pixels() 374 const GLint spanWidth = MIN2(width - skipPixels, SWRAST_MAX_WIDTH); in draw_depth_pixels() 381 row, skipPixels); in draw_depth_pixels() 386 span.x = x + skipPixels; in draw_depth_pixels() 400 skipPixels += spanWidth; in draw_depth_pixels() 451 GLint skipPixels = 0; in draw_rgba_pixels() local 503 while (skipPixels < width) { in draw_rgba_pixels() 504 const GLint spanWidth = MIN2(width - skipPixels, SWRAST_MAX_WIDTH); in draw_rgba_pixels() 508 type, 0, skipPixels); in draw_rgba_pixels() [all …]
|
/external/deqp/modules/gles3/functional/ |
D | es3fTextureSpecificationTests.cpp | 1066 … internalFormat, int width, int height, int rowLength, int skipRows, int skipPixels, int alignment) in TexImage2DParamsCase() argument 1071 , m_skipPixels (skipPixels) in TexImage2DParamsCase() 1131 int skipPixels, in TexImage3DParamsCase() argument 1139 , m_skipPixels (skipPixels) in TexImage3DParamsCase() 1361 int skipPixels, in TexSubImage2DParamsCase() argument 1371 , m_skipPixels (skipPixels) in TexSubImage2DParamsCase() 1780 int skipPixels, in TexSubImage3DParamsCase() argument 1794 , m_skipPixels (skipPixels) in TexSubImage3DParamsCase() 2299 int skipPixels, in TexImage2DBufferCase() argument 2306 , m_skipPixels (skipPixels) in TexImage2DBufferCase() [all …]
|
D | es3fReadPixelsTests.cpp | 69 …tion, int flags, int alignment, GLint rowLength, GLint skipRows, GLint skipPixels, GLenum format =… 92 …tion, int flags, int alignment, GLint rowLength, GLint skipRows, GLint skipPixels, GLenum format, … in ReadPixelsTest() argument 100 , m_skipPixels (skipPixels) in ReadPixelsTest()
|
/external/deqp/modules/gles31/functional/ |
D | es31fTextureSpecificationTests.cpp | 411 int skipPixels, in TexImageCubeArrayBufferCase() argument 420 , m_skipPixels (skipPixels) in TexImageCubeArrayBufferCase() 498 int skipPixels, in TexSubImageCubeArrayBufferCase() argument 513 , m_skipPixels (skipPixels) in TexSubImageCubeArrayBufferCase() 877 int skipPixels; in init() member 911 parameterCases[ndx].skipPixels, in init() 966 int skipPixels; in init() member 1016 paramCases[ndx].skipPixels, in init()
|
/external/deqp/external/openglcts/modules/common/ |
D | glcPackedPixelsTests.cpp | 574 int skipPixels; // (UN)PACK_SKIP_PIXELS member 894 m_initialPackProperties.skipPixels = 0; in resetInitialStorageModes() 903 m_initialUnpackProperties.skipPixels = 0; in resetInitialStorageModes() 926 gl.pixelStorei(GL_PACK_SKIP_PIXELS, pp.skipPixels); in applyInitialStorageModes() 931 gl.pixelStorei(GL_UNPACK_SKIP_PIXELS, up.skipPixels); in applyInitialStorageModes() 1210 rowLength = GRADIENT_WIDTH + m_unpackProperties.skipPixels; in makeGradient() 1258 (j < m_unpackProperties.skipRows + GRADIENT_HEIGHT) && (m_unpackProperties.skipPixels <= x) && in makeGradient() 1259 (x < m_unpackProperties.skipPixels + GRADIENT_WIDTH)) in makeGradient() 1261 float value = static_cast<float>(x - m_unpackProperties.skipPixels) / GRADIENT_WIDTH; in makeGradient() 2167 …props.rowLength = (props.rowLength == 0) ? (GRADIENT_WIDTH + props.skipPixels) : props.rowLen… in readOutputData() [all …]
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Context.cpp | 875 void Context::setPackSkipPixels(GLint skipPixels) in setPackSkipPixels() argument 877 mState.packParameters.skipPixels = skipPixels; in setPackSkipPixels() 895 void Context::setUnpackSkipPixels(GLint skipPixels) in setUnpackSkipPixels() argument 897 mState.unpackParameters.skipPixels = skipPixels; in setUnpackSkipPixels() 2299 *params = mState.packParameters.skipPixels; in getIntegerv() 2339 *params = mState.unpackParameters.skipPixels; in getIntegerv()
|
D | Context.h | 534 void setUnpackSkipPixels(GLint skipPixels); 541 void setPackSkipPixels(GLint skipPixels);
|
/external/swiftshader/src/OpenGL/common/ |
D | Image.hpp | 49 GLint skipPixels = 0; member
|
D | Image.cpp | 554 …s.skipImages * height + storageModes.skipRows) * pitchB + storageModes.skipPixels * ComputePixelSi… in ComputePackingOffset()
|