Home
last modified time | relevance | path

Searched refs:rowLength (Results 1 – 24 of 24) sorted by relevance

/external/mesa3d/src/glx/
Dpixel.c87 GLint rowLength = state->storeUnpack.rowLength; in FillBitmap() local
97 if (rowLength > 0) { in FillBitmap()
98 groupsPerRow = rowLength; in FillBitmap()
169 GLint rowLength = state->storeUnpack.rowLength; in __glFillImage() local
186 if (rowLength > 0) { in __glFillImage()
187 groupsPerRow = rowLength; in __glFillImage()
275 GLint rowLength = state->storePack.rowLength; in EmptyBitmap() local
288 if (rowLength > 0) { in EmptyBitmap()
289 groupsPerRow = rowLength; in EmptyBitmap()
396 GLint rowLength = state->storePack.rowLength; in __glEmptyImage() local
[all …]
Dpixelstore.c85 state->storePack.rowLength = a; in __indirect_glPixelStoref()
146 state->storeUnpack.rowLength = a; in __indirect_glPixelStoref()
233 state->storePack.rowLength = param; in __indirect_glPixelStorei()
288 state->storeUnpack.rowLength = param; in __indirect_glPixelStorei()
Dsingle2.c251 *data = (GLintptr) state->storePack.rowLength; in get_client_data()
275 *data = (GLintptr) state->storeUnpack.rowLength; in get_client_data()
Dglxclient.h172 GLuint rowLength; member
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_pixel_read.c80 GLuint rowLength; in do_blit_readpixels() local
111 rowLength = pack->RowLength; in do_blit_readpixels()
113 rowLength = width; in do_blit_readpixels()
121 rowLength = -rowLength; in do_blit_readpixels()
155 rowLength, dst_buffer, dst_offset, false, in do_blit_readpixels()
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_pixel_read.c80 GLuint rowLength; in do_blit_readpixels() local
111 rowLength = pack->RowLength; in do_blit_readpixels()
113 rowLength = width; in do_blit_readpixels()
121 rowLength = -rowLength; in do_blit_readpixels()
155 rowLength, dst_buffer, dst_offset, false, in do_blit_readpixels()
/external/mesa3d/src/mesa/drivers/dri/intel/
Dintel_pixel_read.c80 GLuint rowLength; in do_blit_readpixels() local
111 rowLength = pack->RowLength; in do_blit_readpixels()
113 rowLength = width; in do_blit_readpixels()
121 rowLength = -rowLength; in do_blit_readpixels()
155 rowLength, dst_buffer, dst_offset, false, in do_blit_readpixels()
/external/deqp/modules/gles3/functional/
Des3fTextureSpecificationTests.cpp1066 …, const char* desc, deUint32 internalFormat, int width, int height, int rowLength, int skipRows, i… in TexImage2DParamsCase() argument
1069 , m_rowLength (rowLength) in TexImage2DParamsCase()
1081 int rowLength = m_rowLength > 0 ? m_rowLength : m_width; in createTexture() local
1082 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); in createTexture()
1129 int rowLength, in TexImage3DParamsCase() argument
1137 , m_rowLength (rowLength) in TexImage3DParamsCase()
1150 int rowLength = m_rowLength > 0 ? m_rowLength : m_width; in createTexture() local
1151 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); in createTexture()
1360 int rowLength, in TexSubImage2DParamsCase() argument
1370 , m_rowLength (rowLength) in TexSubImage2DParamsCase()
[all …]
Des3fReadPixelsTests.cpp69 …st char* name, const char* description, int flags, int alignment, GLint rowLength, GLint skipRows,…
92 …st char* name, const char* description, int flags, int alignment, GLint rowLength, GLint skipRows,… in ReadPixelsTest() argument
98 , m_rowLength (rowLength) in ReadPixelsTest()
/external/deqp/modules/gles31/functional/
Des31fTextureSpecificationTests.cpp406 int rowLength, in TexImageCubeArrayBufferCase() argument
415 , m_rowLength (rowLength) in TexImageCubeArrayBufferCase()
429 int rowLength = m_rowLength > 0 ? m_rowLength : m_size; in createTexture() local
430 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); in createTexture()
493 int rowLength, in TexSubImageCubeArrayBufferCase() argument
508 , m_rowLength (rowLength) in TexSubImageCubeArrayBufferCase()
544 int rowLength = m_rowLength > 0 ? m_rowLength : m_subW; in createTexture() local
545 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); in createTexture()
722 int rowLength = m_size; in createTexture() local
724 int rowPitch = deAlign32(rowLength*pixelSize, alignment); in createTexture()
[all …]
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
DVDUBuffer.java840 int rowLength; local
843 rowLength = charArray[i].length;
844 System.arraycopy(charArray[i], 0, cbuf[i], 0, w < rowLength ? w : rowLength);
845 System.arraycopy(charAttributes[i], 0, abuf[i], 0, w < rowLength ? w : rowLength);
/external/deqp/modules/gles2/functional/
Des2fBufferTestUtil.cpp370 static void renderQuadGridReference (tcu::Surface& dst, int numQuads, int rowLength, const deUint8*… in renderQuadGridReference() argument
374 …dst.setSize(rowLength*VERIFY_QUAD_SIZE, (numQuads/rowLength + (numQuads%rowLength != 0 ? 1 : 0))*V… in renderQuadGridReference()
381 int x0 = (quadNdx%rowLength)*VERIFY_QUAD_SIZE; in renderQuadGridReference()
382 int y0 = (quadNdx/rowLength)*VERIFY_QUAD_SIZE; in renderQuadGridReference()
/external/mesa3d/src/mesa/drivers/x11/
Dxm_dd.c388 const int rowLength = clippedUnpack.RowLength; in xmesa_DrawPixels_8R8G8B() local
405 + ((srcY + h - 1) * rowLength + srcX) * 4; in xmesa_DrawPixels_8R8G8B()
412 ximage.bytes_per_line = -rowLength * 4; /* negative to flip image */ in xmesa_DrawPixels_8R8G8B()
522 const int rowLength = clippedUnpack.RowLength; in xmesa_DrawPixels_5R6G5B() local
538 + ((srcY + h - 1) * rowLength + srcX) * 2; in xmesa_DrawPixels_5R6G5B()
545 ximage.bytes_per_line = -rowLength * 2; /* negative to flip image */ in xmesa_DrawPixels_5R6G5B()
/external/deqp/modules/glshared/
DglsBufferTestUtil.cpp531 static void renderQuadGridReference (tcu::Surface& dst, int numQuads, int rowLength, const deUint8*… in renderQuadGridReference() argument
535 …dst.setSize(rowLength*VERIFY_QUAD_SIZE, (numQuads/rowLength + (numQuads%rowLength != 0 ? 1 : 0))*V… in renderQuadGridReference()
542 int x0 = (quadNdx%rowLength)*VERIFY_QUAD_SIZE; in renderQuadGridReference()
543 int y0 = (quadNdx/rowLength)*VERIFY_QUAD_SIZE; in renderQuadGridReference()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiCopiesAndBlittingTests.cpp1198 deUint32 rowLength = region.bufferImageCopy.bufferRowLength; in copyRegionToTextureLevel() local
1199 if (!rowLength) in copyRegionToTextureLevel()
1200 rowLength = region.bufferImageCopy.imageExtent.width; in copyRegionToTextureLevel()
1215 int texelIndex = texelOffset + (z * imageHeight + y) * rowLength; in copyRegionToTextureLevel()
1407 deUint32 rowLength = region.bufferImageCopy.bufferRowLength; in copyRegionToTextureLevel() local
1408 if (!rowLength) in copyRegionToTextureLevel()
1409 rowLength = region.bufferImageCopy.imageExtent.width; in copyRegionToTextureLevel()
1424 int texelIndex = texelOffset + (z * imageHeight + y) * rowLength; in copyRegionToTextureLevel()
/external/mesa3d/src/mesa/swrast/
Ds_drawpix.c159 const GLint rowLength = width * _mesa_get_format_bytes(rb->Format); in fast_draw_generic_pixels() local
178 memcpy(dst, src, rowLength); in fast_draw_generic_pixels()
/external/skia/src/core/
DSkAAClip.cpp214 size_t rowLength = compute_row_length(row, fBounds.width()); in validate() local
215 SkASSERT(yoff->fOffset + rowLength <= head->fDataSize); in validate()
/external/skia/src/gpu/gl/
DGrGLGpu.cpp963 GrGLint rowLength = static_cast<GrGLint>(rowBytes / bpp); in uploadTexData() local
964 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, rowLength)); in uploadTexData()
/external/robolectric/v3/runtime/
Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...