Lines Matching defs:src
8 #include "src/gpu/dawn/GrDawnGpu.h"
14 #include "src/core/SkConvertPixels.h"
15 #include "src/gpu/GrDataUtils.h"
16 #include "src/gpu/GrDirectContextPriv.h"
17 #include "src/gpu/GrGeometryProcessor.h"
18 #include "src/gpu/GrGpuResourceCacheAccess.h"
19 #include "src/gpu/GrPipeline.h"
20 #include "src/gpu/GrRenderTarget.h"
21 #include "src/gpu/GrSemaphore.h"
22 #include "src/gpu/GrStencilSettings.h"
23 #include "src/gpu/GrTexture.h"
24 #include "src/gpu/GrThreadSafePipelineBuilder.h"
25 #include "src/gpu/dawn/GrDawnAttachment.h"
26 #include "src/gpu/dawn/GrDawnBuffer.h"
27 #include "src/gpu/dawn/GrDawnCaps.h"
28 #include "src/gpu/dawn/GrDawnOpsRenderPass.h"
29 #include "src/gpu/dawn/GrDawnProgramBuilder.h"
30 #include "src/gpu/dawn/GrDawnRenderTarget.h"
31 #include "src/gpu/dawn/GrDawnTexture.h"
32 #include "src/gpu/dawn/GrDawnUtil.h"
34 #include "src/core/SkAutoMalloc.h"
35 #include "src/core/SkMipmap.h"
36 #include "src/sksl/SkSLCompiler.h"
365 const void* src = texels[i].fPixels;
373 SkRectMemcpy(slice.fOffsetMapPtr, dstRowBytes, src, srcRowBytes, trimRowBytes, height);
424 const char* src = static_cast<const char*>(defaultStorage.get());
427 memcpy(dst, src, origRowBytes);
429 src += origRowBytes;
585 static wgpu::Texture get_dawn_texture_from_surface(GrSurface* src) {
586 if (auto t = static_cast<GrDawnTexture*>(src->asTexture())) {
594 GrSurface* src,
597 wgpu::Texture srcTexture = get_dawn_texture_from_surface(src);
666 const char* src = static_cast<const char*>(readPixelsPtr);
669 memcpy(dst, src, origRowBytes);
671 src += rowBytes;
680 GrDawnTexture* src = static_cast<GrDawnTexture*>(tex);
697 texDesc.format = src->format();
755 wgpu::TextureView srcView = src->texture().CreateView(&srcViewDesc);
800 dstCopyView.texture = src->texture();