Home
last modified time | relevance | path

Searched refs:GrGpu (Results 1 – 25 of 168) sorted by relevance

1234567

/external/skqp/src/gpu/
DGrGpu.cpp36 GrGpu::GrGpu(GrContext* context) in GrGpu() function in GrGpu
42 GrGpu::~GrGpu() {} in ~GrGpu()
44 void GrGpu::disconnect(DisconnectType) {} in disconnect()
48 bool GrGpu::IsACopyNeededForRepeatWrapMode(const GrCaps* caps, GrTextureProxy* texProxy, in IsACopyNeededForRepeatWrapMode()
88 bool GrGpu::IsACopyNeededForMips(const GrCaps* caps, const GrTextureProxy* texProxy, in IsACopyNeededForMips()
105 sk_sp<GrTexture> GrGpu::createTexture(const GrSurfaceDesc& origDesc, SkBudgeted budgeted, in createTexture()
146 sk_sp<GrTexture> GrGpu::createTexture(const GrSurfaceDesc& desc, SkBudgeted budgeted) { in createTexture()
150 sk_sp<GrTexture> GrGpu::wrapBackendTexture(const GrBackendTexture& backendTex, in wrapBackendTexture()
166 sk_sp<GrTexture> GrGpu::wrapRenderableBackendTexture(const GrBackendTexture& backendTex, in wrapRenderableBackendTexture()
188 sk_sp<GrRenderTarget> GrGpu::wrapBackendRenderTarget(const GrBackendRenderTarget& backendRT) { in wrapBackendRenderTarget()
[all …]
DGrBufferAllocPool.h18 class GrGpu; variable
62 GrBufferAllocPool(GrGpu* gpu, GrBufferType bufferType, void* initialBuffer);
138 GrGpu* fGpu;
159 GrVertexBufferAllocPool(GrGpu* gpu, void* initialBuffer);
238 GrIndexBufferAllocPool(GrGpu* gpu, void* initialBuffer);
DGrBuffer.h13 class GrGpu; variable
20 static SK_WARN_UNUSED_RESULT sk_sp<GrBuffer> MakeCPUBacked(GrGpu*, size_t sizeInBytes,
104 GrBuffer(GrGpu*, size_t sizeInBytes, GrBufferType, GrAccessPattern);
112 GrBuffer(GrGpu*, size_t sizeInBytes, GrBufferType, void* cpuData);
DGrResourceProvider.h20 class GrGpu; variable
61 GrResourceProvider(GrGpu*, GrResourceCache*, GrSingleOwner*,
281 GrGpu* gpu() { return fGpu; } in gpu()
282 const GrGpu* gpu() const { return fGpu; } in gpu()
298 GrGpu* fGpu;
DGrPathRendering.h14 class GrGpu; variable
120 GrPathRendering(GrGpu* gpu) : fGpu(gpu) { } in GrPathRendering()
130 GrGpu* fGpu;
DGrBuffer.cpp12 sk_sp<GrBuffer> GrBuffer::MakeCPUBacked(GrGpu* gpu, size_t sizeInBytes, GrBufferType intendedType, in MakeCPUBacked()
27 GrBuffer::GrBuffer(GrGpu* gpu, size_t sizeInBytes, GrBufferType type, void* cpuData) in GrBuffer()
37 GrBuffer::GrBuffer(GrGpu* gpu, size_t sizeInBytes, GrBufferType type, GrAccessPattern pattern) in GrBuffer()
DGrOpFlushState.h21 class GrGpu; variable
32 GrOpFlushState(GrGpu*, GrResourceProvider*, GrTokenTracker*, void* vertexSpace,
51 GrGpu* gpu() { return fGpu; } in gpu()
160 GrGpu* fGpu;
DGrTextureMaker.cpp31 !GrGpu::IsACopyNeededForRepeatWrapMode(fContext->contextPriv().caps(), original.get(), in onRefTextureProxyForParams()
34 needsCopyForMipsOnly = GrGpu::IsACopyNeededForMips(fContext->contextPriv().caps(), in onRefTextureProxyForParams()
43 !GrGpu::IsACopyNeededForRepeatWrapMode(fContext->contextPriv().caps(), nullptr, in onRefTextureProxyForParams()
/external/skia/src/gpu/
DGrGpu.cpp40 GrGpu::GrGpu(GrDirectContext* direct) : fResetBits(kAll_GrBackendState), fContext(direct) {} in GrGpu() function in GrGpu
42 GrGpu::~GrGpu() { in ~GrGpu()
46 void GrGpu::initCapsAndCompiler(sk_sp<const GrCaps> caps) { in initCapsAndCompiler()
51 void GrGpu::disconnect(DisconnectType type) {} in disconnect()
100 sk_sp<GrTexture> GrGpu::createTextureCommon(SkISize dimensions, in createTextureCommon()
149 sk_sp<GrTexture> GrGpu::createTexture(SkISize dimensions, in createTexture()
171 sk_sp<GrTexture> GrGpu::createTexture(SkISize dimensions, in createTexture()
228 sk_sp<GrTexture> GrGpu::createCompressedTexture(SkISize dimensions, in createCompressedTexture()
260 sk_sp<GrTexture> GrGpu::wrapBackendTexture(const GrBackendTexture& backendTex, in wrapBackendTexture()
281 sk_sp<GrTexture> GrGpu::wrapCompressedBackendTexture(const GrBackendTexture& backendTex, in wrapCompressedBackendTexture()
[all …]
DGrRingBuffer.h15 class GrGpu; variable
25 GrRingBuffer(GrGpu* gpu, size_t size, size_t alignment, GrGpuBufferType intendedType) in GrRingBuffer()
45 void startSubmit(GrGpu*);
58 GrGpu* fGpu;
DGrBufferAllocPool.h20 class GrGpu; variable
86 GrBufferAllocPool(GrGpu* gpu, GrGpuBufferType bufferType, sk_sp<CpuBufferCache> cpuBufferCache);
164 GrGpu* fGpu;
182 GrVertexBufferAllocPool(GrGpu* gpu, sk_sp<CpuBufferCache> cpuBufferCache);
261 GrIndexBufferAllocPool(GrGpu* gpu, sk_sp<CpuBufferCache> cpuBufferCache);
320 GrDrawIndirectBufferAllocPool(GrGpu* gpu, sk_sp<CpuBufferCache> cpuBufferCache) in GrDrawIndirectBufferAllocPool()
DGrFinishCallbacks.h16 class GrGpu; variable
24 GrFinishCallbacks(GrGpu* gpu);
60 GrGpu* fGpu;
DGrGpuResource.h15 class GrGpu; variable
225 GrGpuResource(GrGpu*);
228 GrGpu* getGpu() const { return fGpu; } in getGpu()
291 friend class GrGpu; // for assert in GrGpu to access getGpu variable
308 GrGpu* fGpu;
DGrStagingBufferManager.h15 class GrGpu; variable
19 GrStagingBufferManager(GrGpu* gpu) : fGpu(gpu) {} in GrStagingBufferManager()
64 GrGpu* fGpu;
DGrResourceProvider.h20 class GrGpu; variable
41 GrResourceProvider(GrGpu*, GrResourceCache*, GrSingleOwner*);
362 GrGpu* gpu() { return fGpu; } in gpu()
363 const GrGpu* gpu() const { return fGpu; } in gpu()
380 GrGpu* fGpu;
DGrGpuBuffer.h14 class GrGpu; variable
84 GrGpuBuffer(GrGpu*, size_t sizeInBytes, GrGpuBufferType, GrAccessPattern);
/external/skqp/include/gpu/
DGrGpuResource.h16 class GrGpu; variable
259 GrGpuResource(GrGpu*);
262 GrGpu* getGpu() const { return fGpu; } in getGpu()
330 friend class GrGpu; // for assert in GrGpu to access getGpu variable
347 GrGpu* fGpu;
/external/skia/bench/
DGrResourceCacheBench.cpp24 BenchResource (GrGpu* gpu) in BenchResource()
43 static void populate_cache(GrGpu* gpu, int resourceCount, int keyData32Count) { in populate_cache()
85 GrGpu* gpu = context->priv().getGpu(); in onDraw()
131 GrGpu* gpu = fContext->priv().getGpu(); in onDelayedSetup()
/external/skqp/bench/
DGrResourceCacheBench.cpp24 BenchResource (GrGpu* gpu) in BenchResource()
43 static void populate_cache(GrGpu* gpu, int resourceCount, int keyData32Count) { in populate_cache()
85 GrGpu* gpu = context->contextPriv().getGpu(); in onDraw()
131 GrGpu* gpu = fContext->contextPriv().getGpu(); in onDelayedSetup()
/external/skia/src/gpu/mtl/
DGrMtlTrampoline.h15 class GrGpu; variable
25 static sk_sp<GrGpu> MakeGpu(const GrMtlBackendContext&, const GrContextOptions&,
/external/skqp/src/gpu/mtl/
DGrMtlTrampoline.h15 class GrGpu; variable
24 static sk_sp<GrGpu> MakeGpu(GrContext*, const GrContextOptions&, void* device, void* queue);
/external/skqp/src/gpu/ops/
DGrDashLinePathRenderer.h13 class GrGpu; variable
25 sk_sp<GrGpu> fGpu;
/external/skia/src/gpu/ops/
DGrDashLinePathRenderer.h13 class GrGpu; variable
27 sk_sp<GrGpu> fGpu;
/external/skqp/src/gpu/gl/
DGrGLTexture.h92 GrGpu::ResetTimestamp getCachedParamsTimestamp() const { return fParamsTimestamp; } in getCachedParamsTimestamp()
98 GrGpu::ResetTimestamp currTimestamp) { in setCachedParams()
150 GrGpu::ResetTimestamp fParamsTimestamp;
/external/skqp/src/gpu/mock/
DGrMockGpu.h21 class GrMockGpu : public GrGpu {
23 static sk_sp<GrGpu> Make(const GrMockOptions*, const GrContextOptions&, GrContext*);
130 typedef GrGpu INHERITED;

1234567