Home
last modified time | relevance | path

Searched refs:outputPitch (Results 1 – 14 of 14) sorted by relevance

/external/angle/src/libANGLE/renderer/d3d/
DFramebufferD3D.cpp209 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()
DFramebufferD3D.h119 size_t outputPitch,
/external/angle/src/libANGLE/renderer/
Drenderer_utils.cpp212 : 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()
Drenderer_utils.h86 GLuint outputPitch,
93 GLuint outputPitch; member
/external/angle/src/libANGLE/renderer/d3d/d3d11/
DFramebuffer11.cpp253 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()
DFramebuffer11.h71 size_t outputPitch,
DRenderer11.h384 GLuint outputPitch,
DRenderer11.cpp3271 GLuint outputPitch, in readFromAttachment() argument
3376 PackPixelsParams packParams(safeArea, angleFormat, outputPitch, reverseRowOrder, packBuffer, 0); in readFromAttachment()
/external/angle/src/libANGLE/renderer/metal/
DFrameBufferMtl.mm173 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/
DFramebuffer9.cpp83 size_t outputPitch, in readPixelsImpl() argument
204 packParams.outputPitch = static_cast<GLuint>(outputPitch); in readPixelsImpl()
DFramebuffer9.h66 size_t outputPitch,
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_helpers.cpp3479 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/
DContext.cpp3378 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/
DContext.cpp2428 GLsizei outputPitch = gl::ComputePitch(width, format, type, mState.packAlignment); in readPixels() local
2433 int requiredSize = outputPitch * height; in readPixels()
2667 dest += outputPitch; in readPixels()