/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_pixel_read.c | 80 GLuint rowLength; 110 if (pack->RowLength > 0) 111 rowLength = pack->RowLength; 113 rowLength = width; 121 rowLength = -rowLength; 155 rowLength, dst_buffer, dst_offset, false,
|
/external/mesa3d/src/glx/ |
pixel.c | 87 GLint rowLength = state->storeUnpack.rowLength; 97 if (rowLength > 0) { 98 groupsPerRow = rowLength; 169 GLint rowLength = state->storeUnpack.rowLength; 186 if (rowLength > 0) { 187 groupsPerRow = rowLength; 275 GLint rowLength = state->storePack.rowLength; [all...] |
glxclient.h | 172 GLuint rowLength;
|
/external/mesa3d/src/mesa/swrast/ |
s_drawpix.c | 159 const GLint rowLength = width * _mesa_get_format_bytes(rb->Format); 178 memcpy(dst, src, rowLength);
|
/external/mesa3d/src/mesa/drivers/x11/ |
xm_dd.c | 388 const int rowLength = clippedUnpack.RowLength; 405 + ((srcY + h - 1) * rowLength + srcX) * 4; 412 ximage.bytes_per_line = -rowLength * 4; /* negative to flip image */ 522 const int rowLength = clippedUnpack.RowLength; 538 + ((srcY + h - 1) * rowLength + srcX) * 2; 545 ximage.bytes_per_line = -rowLength * 2; /* negative to flip image */
|
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/ |
VDUBuffer.java | 840 int rowLength; 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/external/vulkancts/modules/vulkan/api/ |
vktApiCopiesAndBlittingTests.cpp | [all...] |
/external/deqp/modules/gles31/functional/ |
es31fTextureSpecificationTests.cpp | 406 int rowLength, 415 , m_rowLength (rowLength) 429 int rowLength = m_rowLength > 0 ? m_rowLength : m_size; 430 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); 493 int rowLength, 508 , m_rowLength (rowLength) 544 int rowLength = m_rowLength > 0 ? m_rowLength : m_subW; 545 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); 722 int rowLength = m_size; 724 int rowPitch = deAlign32(rowLength*pixelSize, alignment) [all...] |
/external/deqp/modules/gles3/functional/ |
es3fTextureSpecificationTests.cpp | [all...] |
/external/skia/src/core/ |
SkAAClip.cpp | 214 size_t rowLength = compute_row_length(row, fBounds.width()); 215 SkASSERT(yoff->fOffset + rowLength <= head->fDataSize); [all...] |
/frameworks/base/core/java/android/hardware/ |
SensorManager.java | [all...] |
/external/skia/src/gpu/gl/ |
GrGLGpu.cpp | [all...] |