HomeSort by relevance Sort by last modified time
    Searched refs:rowLength (Results 1 - 25 of 26) sorted by null

1 2

  /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...]
pixelstore.c 86 state->storePack.rowLength = a;
147 state->storeUnpack.rowLength = a;
234 state->storePack.rowLength = param;
289 state->storeUnpack.rowLength = param;
single2.c 249 *data = (GLintptr) state->storePack.rowLength;
273 *data = (GLintptr) state->storeUnpack.rowLength;
glxclient.h 184 GLuint rowLength;
  /external/deqp/modules/gles31/functional/
es31fTextureSpecificationTests.cpp 408 int rowLength,
417 , m_rowLength (rowLength)
431 int rowLength = m_rowLength > 0 ? m_rowLength : m_size;
432 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment);
495 int rowLength,
510 , m_rowLength (rowLength)
546 int rowLength = m_rowLength > 0 ? m_rowLength : m_subW;
547 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment);
724 int rowLength = m_size;
726 int rowPitch = deAlign32(rowLength*pixelSize, alignment)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureSpecificationTests.cpp     [all...]
es3fReadPixelsTests.cpp 69 ReadPixelsTest (Context& context, const char* name, const char* description, int flags, int alignment, GLint rowLength, GLint skipRows, GLint skipPixels, GLenum format = GL_RGBA, GLenum type = GL_UNSIGNED_BYTE);
92 ReadPixelsTest::ReadPixelsTest (Context& context, const char* name, const char* description, int flags, int alignment, GLint rowLength, GLint skipRows, GLint skipPixels, GLenum format, GLenum type)
98 , m_rowLength (rowLength)
437 TestCaseGroup* group = new TestCaseGroup(m_context, "rowlength", "Read pixels rowlength test");
  /external/deqp/modules/gles2/functional/
es2fBufferTestUtil.cpp 370 static void renderQuadGridReference (tcu::Surface& dst, int numQuads, int rowLength, const deUint8* inPtr)
374 dst.setSize(rowLength*VERIFY_QUAD_SIZE, (numQuads/rowLength + (numQuads%rowLength != 0 ? 1 : 0))*VERIFY_QUAD_SIZE);
381 int x0 = (quadNdx%rowLength)*VERIFY_QUAD_SIZE;
382 int y0 = (quadNdx/rowLength)*VERIFY_QUAD_SIZE;
  /external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
VDUBuffer.java 839 int rowLength;
842 rowLength = charArray[i].length;
843 System.arraycopy(charArray[i], 0, cbuf[i], 0, w < rowLength ? w : rowLength);
844 System.arraycopy(charAttributes[i], 0, abuf[i], 0, w < rowLength ? w : rowLength);
  /external/deqp/modules/glshared/
glsBufferTestUtil.cpp 531 static void renderQuadGridReference (tcu::Surface& dst, int numQuads, int rowLength, const deUint8* inPtr)
535 dst.setSize(rowLength*VERIFY_QUAD_SIZE, (numQuads/rowLength + (numQuads%rowLength != 0 ? 1 : 0))*VERIFY_QUAD_SIZE);
542 int x0 = (quadNdx%rowLength)*VERIFY_QUAD_SIZE;
543 int y0 = (quadNdx/rowLength)*VERIFY_QUAD_SIZE;
  /external/mesa3d/src/mesa/drivers/x11/
xm_dd.c 386 const int rowLength = clippedUnpack.RowLength;
403 + ((srcY + h - 1) * rowLength + srcX) * 4;
410 ximage.bytes_per_line = -rowLength * 4; /* negative to flip image */
518 const int rowLength = clippedUnpack.RowLength;
534 + ((srcY + h - 1) * rowLength + srcX) * 2;
541 ximage.bytes_per_line = -rowLength * 2; /* negative to flip image */
  /external/skia/tools/gpu/atlastext/
GLTestAtlasTextRenderer.cpp 323 GrGLint rowLength = static_cast<GrGLint>(rowBytes / bpp);
324 if (static_cast<size_t>(rowLength * bpp) != rowBytes) {
328 callgl(PixelStorei, GR_GL_UNPACK_ROW_LENGTH, rowLength);
  /external/skqp/tools/gpu/atlastext/
GLTestAtlasTextRenderer.cpp 323 GrGLint rowLength = static_cast<GrGLint>(rowBytes / bpp);
324 if (static_cast<size_t>(rowLength * bpp) != rowBytes) {
328 callgl(PixelStorei, GR_GL_UNPACK_ROW_LENGTH, rowLength);
  /external/swiftshader/src/OpenGL/common/
Image.hpp 44 GLint rowLength = 0;
Image.cpp     [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
Context.cpp 870 void Context::setPackRowLength(GLint rowLength)
872 mState.packParameters.rowLength = rowLength;
885 void Context::setUnpackRowLength(GLint rowLength)
887 mState.unpackParameters.rowLength = rowLength;
    [all...]
Context.h 532 void setUnpackRowLength(GLint rowLength);
540 void setPackRowLength(GLint rowLength);
  /external/mesa3d/src/mesa/swrast/
s_drawpix.c 161 const GLint rowLength = width * _mesa_get_format_bytes(rb->Format);
180 memcpy(dst, src, rowLength);
  /frameworks/base/core/java/android/hardware/
SensorManager.java     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiCopiesAndBlittingTests.cpp     [all...]
  /external/skia/src/core/
SkAAClip.cpp 215 size_t rowLength = compute_row_length(row, fBounds.width());
216 SkASSERT(yoff->fOffset + rowLength <= head->fDataSize);
    [all...]
  /external/skqp/src/core/
SkAAClip.cpp 215 size_t rowLength = compute_row_length(row, fBounds.width());
216 SkASSERT(yoff->fOffset + rowLength <= head->fDataSize);
    [all...]
  /frameworks/base/services/core/java/com/android/server/content/
SyncManager.java     [all...]
  /external/skia/src/gpu/gl/
GrGLGpu.cpp     [all...]
  /external/skqp/src/gpu/gl/
GrGLGpu.cpp     [all...]

Completed in 849 milliseconds

1 2