/third_party/mesa3d/src/mesa/main/ |
D | copyimage.c | 546 int dstX, int dstY, int dstZ, int dstLevel, in copy_image_subdata() argument 576 dstX, dstY, newDstZ, in copy_image_subdata() 585 GLint dstX, GLint dstY, GLint dstZ, in _mesa_CopyImageSubData_no_error() argument 600 srcLevel, dstTexImage, dstRenderbuffer, dstX, dstY, dstZ, in _mesa_CopyImageSubData_no_error() 608 GLint dstX, GLint dstY, GLint dstZ, in _mesa_CopyImageSubData() argument 628 dstX, dstY, dstZ, in _mesa_CopyImageSubData() 682 if ((dstX % dst_bw != 0) || (dstY % dst_bh != 0)) { in _mesa_CopyImageSubData() 712 dstX, dstY, dstZ, dstWidth, dstHeight, dstDepth, in _mesa_CopyImageSubData() 736 srcLevel, dstTexImage, dstRenderbuffer, dstX, dstY, dstZ, in _mesa_CopyImageSubData() 744 GLint dstX, GLint dstY, GLint dstZ, in _mesa_CopyImageSubDataNV_no_error() argument [all …]
|
/third_party/mesa3d/src/gallium/frontends/xa/ |
D | xa_renderer.c | 232 float srcX, float srcY, float dstX, float dstY, in add_vertex_data1() argument 241 add_vertex_1tex(r, dstX, dstY, tc0[0], tc0[1]); in add_vertex_data1() 243 add_vertex_1tex(r, dstX + width, dstY, tc1[0], tc1[1]); in add_vertex_data1() 245 add_vertex_1tex(r, dstX + width, dstY + height, tc2[0], tc2[1]); in add_vertex_data1() 247 add_vertex_1tex(r, dstX, dstY + height, tc3[0], tc3[1]); in add_vertex_data1() 253 float dstX, float dstY, float width, float height, in add_vertex_data2() argument 267 add_vertex_2tex(r, dstX, dstY, in add_vertex_data2() 270 add_vertex_2tex(r, dstX + width, dstY, in add_vertex_data2() 273 add_vertex_2tex(r, dstX + width, dstY + height, in add_vertex_data2() 276 add_vertex_2tex(r, dstX, dstY + height, in add_vertex_data2() [all …]
|
D | xa_composite.c | 548 int dstX, int dstY, int width, int height) in xa_composite_rect() argument 551 xa_scissor_update(ctx, dstX, dstY, dstX + width, dstY + height); in xa_composite_rect() 552 renderer_solid(ctx, dstX, dstY, dstX + width, dstY + height); in xa_composite_rect() 555 int pos[6] = {srcX, srcY, maskX, maskY, dstX, dstY}; in xa_composite_rect() 559 xa_scissor_update(ctx, dstX, dstY, dstX + width, dstY + height); in xa_composite_rect()
|
/third_party/flutter/skia/src/codec/ |
D | SkBmpRLECodec.cpp | 176 const int dstX = get_dst_coord(x, fSampleX); in setPixel() local 181 dstRow[dstX] = fColorTable->operator[](index); in setPixel() 186 dstRow[dstX] = SkPixel32ToPixel16(fColorTable->operator[](index)); in setPixel() 210 const int dstX = get_dst_coord(x, fSampleX); in setRGBPixel() local 214 dstRow[dstX] = SkPackARGB_as_RGBA(0xFF, red, green, blue); in setRGBPixel() 219 dstRow[dstX] = SkPackARGB_as_BGRA(0xFF, red, green, blue); in setRGBPixel() 224 dstRow[dstX] = SkPack888ToRGB16(red, green, blue); in setRGBPixel()
|
D | SkWebpCodec.cpp | 383 int dstX = frameRect.x(); in onGetPixels() local 397 int minXOffset = SkTMin(dstX, subset.x()); in onGetPixels() 399 dstX -= minXOffset; in onGetPixels() 434 dstX = scaleX * dstX; in onGetPixels() 485 config.output.u.RGBA.rgba = reinterpret_cast<uint8_t*>(webpDst.getAddr(dstX, dstY)); in onGetPixels() 514 dst = SkTAddOffset<void>(dst, dstBpp * dstX + rowBytes * dstY); in onGetPixels()
|
D | SkBmpStandardCodec.cpp | 331 for (int dstX = 0; dstX < sampledWidth; dstX++) { in decodeIcoMask() local 337 applyMask(dstRow, dstX, alphaBit); in decodeIcoMask()
|
/third_party/skia/src/codec/ |
D | SkBmpRLECodec.cpp | 179 const int dstX = get_dst_coord(x, fSampleX); in setPixel() local 184 dstRow[dstX] = fColorTable->operator[](index); in setPixel() 189 dstRow[dstX] = SkPixel32ToPixel16(fColorTable->operator[](index)); in setPixel() 213 const int dstX = get_dst_coord(x, fSampleX); in setRGBPixel() local 217 dstRow[dstX] = SkPackARGB_as_RGBA(0xFF, red, green, blue); in setRGBPixel() 222 dstRow[dstX] = SkPackARGB_as_BGRA(0xFF, red, green, blue); in setRGBPixel() 227 dstRow[dstX] = SkPack888ToRGB16(red, green, blue); in setRGBPixel()
|
D | SkWebpCodec.cpp | 378 int dstX = frameRect.x(); in onGetPixels() local 392 int minXOffset = std::min(dstX, subset.x()); in onGetPixels() 394 dstX -= minXOffset; in onGetPixels() 429 dstX = scaleX * dstX; in onGetPixels() 479 config.output.u.RGBA.rgba = reinterpret_cast<uint8_t*>(webpDst.getAddr(dstX, dstY)); in onGetPixels() 508 dst = SkTAddOffset<void>(dst, dstBpp * dstX + rowBytes * dstY); in onGetPixels()
|
D | SkBmpStandardCodec.cpp | 331 for (int dstX = 0; dstX < sampledWidth; dstX++) { in decodeIcoMask() local 337 applyMask(dstRow, dstX, alphaBit); in decodeIcoMask()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | RenderbufferImpl.h | 59 GLint dstX, 73 GLint dstX, 104 GLint dstX, in copyRenderbufferSubData() argument 122 GLint dstX, in copyTextureSubData() argument
|
D | TextureImpl.cpp | 54 GLint dstX, in copyRenderbufferSubData() argument 72 GLint dstX, in copyTextureSubData() argument
|
/third_party/skia/src/gpu/d3d/ |
D | GrD3DCommandList.h | 76 UINT dstX, UINT dstY, 83 UINT dstX, 192 unsigned int dstX, unsigned int dstY,
|
D | GrD3DCommandList.cpp | 187 UINT dstX, UINT dstY, in copyTextureRegionToTexture() argument 196 fCommandList->CopyTextureRegion(dstLocation, dstX, dstY, 0, srcLocation, srcBox); in copyTextureRegionToTexture() 201 UINT dstX, in copyTextureRegionToBuffer() argument 211 fCommandList->CopyTextureRegion(dstLocation, dstX, dstY, 0, srcLocation, srcBox); in copyTextureRegionToBuffer() 505 unsigned int dstX, unsigned int dstY, in resolveSubresourceRegion() argument 519 commandList1->ResolveSubresourceRegion(dstTexture->d3dResource(), 0, dstX, dstY, in resolveSubresourceRegion()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Renderbuffer.cpp | 202 GLint dstX, in copyRenderbufferSubData() argument 210 srcZ, dstLevel, dstX, dstY, dstZ, srcWidth, in copyRenderbufferSubData() 223 GLint dstX, in copyTextureSubData() argument 231 dstLevel, dstX, dstY, dstZ, srcWidth, srcHeight, in copyTextureSubData()
|
D | Renderbuffer.h | 102 GLint dstX, 116 GLint dstX,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | RenderbufferVk.cpp | 201 GLint dstX, in copyRenderbufferSubData() argument 215 srcZ, mImage, dstLevel, dstX, dstY, dstZ, srcWidth, in copyRenderbufferSubData() 226 GLint dstX, in copyTextureSubData() argument 241 srcZ, mImage, dstLevel, dstX, dstY, dstZ, srcWidth, in copyTextureSubData()
|
D | RenderbufferVk.h | 47 GLint dstX, 61 GLint dstX,
|
/third_party/flutter/skia/tests/ |
D | BitmapCopyTest.cpp | 203 const int dstX = gRec[i].fExpectedDstLoc.x(); in DEF_TEST() local 210 int sx = x - dstX + srcR.x(); in DEF_TEST()
|
/third_party/skia/tests/ |
D | BitmapCopyTest.cpp | 199 const int dstX = gRec[i].fExpectedDstLoc.x(); in DEF_TEST() local 206 int sx = x - dstX + srcR.x(); in DEF_TEST()
|
/third_party/flutter/skia/src/pdf/ |
D | SkPDFUtils.cpp | 76 SkScalar dstX, SkScalar dstY, SkWStream* content) { in append_cubic() argument 82 if (ctl2X != dstX || ctl2Y != dstY) { in append_cubic() 89 SkPDFUtils::AppendScalar(dstX, content); in append_cubic()
|
/third_party/skia/src/pdf/ |
D | SkPDFUtils.cpp | 77 SkScalar dstX, SkScalar dstY, SkWStream* content) { in append_cubic() argument 83 if (ctl2X != dstX || ctl2Y != dstY) { in append_cubic() 90 SkPDFUtils::AppendScalar(dstX, content); in append_cubic()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
D | Device.cpp | 400 byte *dstX = destBuffer; in copyBuffer() local 401 for(unsigned int x = 0; x < width; ++x, dstX += bytes, srcX -= bytes) in copyBuffer() 403 memcpy(dstX, srcX, bytes); in copyBuffer() 412 byte *dstX = destBuffer; in copyBuffer() local 413 for(unsigned int x = 0; x < width; ++x, dstX += bytes, srcX -= bytes) in copyBuffer() 415 memcpy(dstX, srcX, bytes); in copyBuffer()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/null/ |
D | TextureNULL.h | 94 GLint dstX, 108 GLint dstX,
|
D | TextureNULL.cpp | 121 GLint dstX, in copyRenderbufferSubData() argument 138 GLint dstX, in copyTextureSubData() argument
|
/third_party/flutter/skia/include/core/ |
D | SkSurface.h | 801 void writePixels(const SkPixmap& src, int dstX, int dstY); 816 void writePixels(const SkBitmap& src, int dstX, int dstY);
|