/external/angle/src/libANGLE/renderer/d3d/ |
D | FramebufferD3D.cpp | 209 GLuint outputPitch = 0; in readPixels() local 212 packState.rowLength, &outputPitch)); in readPixels() 216 type, outputPitch, 0, packState, false, &outputSkipBytes)); in readPixels() 218 (clippedArea.y - area.y) * outputPitch; in readPixels() 220 return readPixelsImpl(context, clippedArea, format, type, outputPitch, packState, in readPixels()
|
D | FramebufferD3D.h | 119 size_t outputPitch,
|
/external/angle/src/libANGLE/renderer/ |
D | renderer_utils.cpp | 212 : destFormat(nullptr), outputPitch(0), packBuffer(nullptr), offset(0) in PackPixelsParams() 223 outputPitch(outputPitchIn), in PackPixelsParams() 251 memcpy(destWithOffset + y * params.outputPitch, source + y * inputPitch, in PackPixels() 267 destWithOffset + y * params.outputPitch + x * params.destFormat->pixelBytes; in PackPixels() 294 destWithOffset + y * params.outputPitch + x * params.destFormat->pixelBytes; in PackPixels()
|
D | renderer_utils.h | 86 GLuint outputPitch, 93 GLuint outputPitch; member
|
/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | Framebuffer11.cpp | 253 size_t outputPitch, in readPixelsImpl() argument 265 PackPixelsParams packParams(area, angleFormat, static_cast<GLuint>(outputPitch), in readPixelsImpl() 273 static_cast<GLuint>(outputPitch), pack, pixels); in readPixelsImpl()
|
D | Framebuffer11.h | 71 size_t outputPitch,
|
D | Renderer11.h | 384 GLuint outputPitch,
|
D | Renderer11.cpp | 3271 GLuint outputPitch, in readFromAttachment() argument 3376 PackPixelsParams packParams(safeArea, angleFormat, outputPitch, reverseRowOrder, packBuffer, 0); in readFromAttachment()
|
/external/angle/src/libANGLE/renderer/metal/ |
D | FrameBufferMtl.mm | 173 GLuint outputPitch = 0; 176 packState.rowLength, &outputPitch)); 179 type, outputPitch, 0, packState, false, &outputSkipBytes)); 182 (clippedArea.y - area.y) * outputPitch; 186 PackPixelsParams params(flippedArea, angleFormat, outputPitch, packState.reverseRowOrder, 720 ++i, r += rowOffset, pixels += packPixelsRowParams.outputPitch)
|
/external/angle/src/libANGLE/renderer/d3d/d3d9/ |
D | Framebuffer9.cpp | 83 size_t outputPitch, in readPixelsImpl() argument 204 packParams.outputPitch = static_cast<GLuint>(outputPitch); in readPixelsImpl()
|
D | Framebuffer9.h | 66 size_t outputPitch,
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | vk_helpers.cpp | 3479 GLuint outputPitch = 0; in GetReadPixelsParams() local 3482 packState.rowLength, &outputPitch)); in GetReadPixelsParams() 3483 ANGLE_VK_CHECK_MATH(contextVk, sizedFormatInfo.computeSkipBytes(type, outputPitch, 0, packState, in GetReadPixelsParams() 3487 (clippedArea.y - area.y) * outputPitch; in GetReadPixelsParams() 3491 *paramsOut = PackPixelsParams(clippedArea, angleFormat, outputPitch, packState.reverseRowOrder, in GetReadPixelsParams()
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Context.cpp | 3378 GLsizei outputPitch = gl::ComputePitch(outputWidth, format, type, mState.packParameters.alignment); in readPixels() local 3386 int requiredSize = outputPitch * height; in readPixels() 3417 …h, height, 1, es2::ConvertReadFormatType(format, type), pixels, outputPitch, outputPitch * outpu… in readPixels()
|
/external/swiftshader/src/OpenGL/libGLES_CM/ |
D | Context.cpp | 2428 GLsizei outputPitch = gl::ComputePitch(width, format, type, mState.packAlignment); in readPixels() local 2433 int requiredSize = outputPitch * height; in readPixels() 2667 dest += outputPitch; in readPixels()
|