Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
DFramebufferD3D.cpp222 GLuint outputPitch = 0; in readPixels() local
225 pack.rowLength, &outputPitch)); in readPixels()
228 ANGLE_CHECK_GL_MATH(contextD3D, sizedFormatInfo.computeSkipBytes(type, outputPitch, 0, pack, in readPixels()
231 (clippedArea.y - area.y) * outputPitch; in readPixels()
233 return readPixelsImpl(context, clippedArea, format, type, outputPitch, pack, packBuffer, in readPixels()
DFramebufferD3D.h119 size_t outputPitch,
/third_party/skia/third_party/externals/angle2/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.h72 size_t outputPitch,
DRenderer11.h356 GLuint outputPitch,
DRenderer11.cpp3407 GLuint outputPitch, in readFromAttachment() argument
3512 PackPixelsParams packParams(safeArea, angleFormat, outputPitch, reverseRowOrder, packBuffer, 0); in readFromAttachment()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
DFramebuffer9.cpp83 size_t outputPitch, in readPixelsImpl() argument
205 packParams.outputPitch = static_cast<GLuint>(outputPitch); in readPixelsImpl()
DFramebuffer9.h67 size_t outputPitch,
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
Drenderer_utils.h114 GLuint outputPitch,
121 GLuint outputPitch; member
Drenderer_utils.cpp277 outputPitch(0), in PackPixelsParams()
291 outputPitch(outputPitchIn), in PackPixelsParams()
379 memcpy(destWithOffset + y * params.outputPitch, source + y * inputPitch, in PackPixels()
395 destWithOffset + y * params.outputPitch + x * params.destFormat->pixelBytes; in PackPixels()
422 destWithOffset + y * params.outputPitch + x * params.destFormat->pixelBytes; in PackPixels()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
DFrameBufferMtl.mm237 GLuint outputPitch = 0;
240 pack.rowLength, &outputPitch));
242 ANGLE_CHECK_GL_MATH(contextMtl, sizedFormatInfo.computeSkipBytes(type, outputPitch, 0, pack,
246 (clippedArea.y - area.y) * outputPitch;
250 PackPixelsParams params(flippedArea, angleFormat, outputPitch, pack.reverseRowOrder, packBuffer,
1473 ++i, r += rowOffset, pixels += packPixelsRowParams.outputPitch)
1509 *packPixelsParams.destFormat, offset, packPixelsParams.outputPitch,
/third_party/skia/third_party/externals/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()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_helpers.cpp7286 GLuint outputPitch = 0; in GetReadPixelsParams() local
7289 packState.rowLength, &outputPitch)); in GetReadPixelsParams()
7290 ANGLE_VK_CHECK_MATH(contextVk, sizedFormatInfo.computeSkipBytes(type, outputPitch, 0, packState, in GetReadPixelsParams()
7294 (clippedArea.y - area.y) * outputPitch; in GetReadPixelsParams()
7298 *paramsOut = PackPixelsParams(clippedArea, angleFormat, outputPitch, packState.reverseRowOrder, in GetReadPixelsParams()
7397 packPixelsParams.outputPitch % readFormat->pixelBytes == 0; in canCopyWithTransformForReadPixels()
7518 ASSERT(packPixelsParams.outputPitch % readFormat->pixelBytes == 0); in readPixels()
7524 region.bufferRowLength = packPixelsParams.outputPitch / readFormat->pixelBytes; in readPixels()