Home
last modified time | relevance | path

Searched refs:GrBackendTexture (Results 1 – 25 of 40) sorted by relevance

12

/external/skia/src/gpu/
DGrBackendSurface.cpp16 GrBackendTexture::GrBackendTexture(int width, in GrBackendTexture() function in GrBackendTexture
26 GrBackendTexture::GrBackendTexture(int width, in GrBackendTexture() function in GrBackendTexture
36 GrBackendTexture::GrBackendTexture(int width, in GrBackendTexture() function in GrBackendTexture
46 GrBackendTexture::GrBackendTexture(const GrBackendTextureDesc& desc, GrBackend backend) in GrBackendTexture() function in GrBackendTexture
74 const GrVkImageInfo* GrBackendTexture::getVkImageInfo() const { in getVkImageInfo()
82 const GrGLTextureInfo* GrBackendTexture::getGLTextureInfo() const { in getGLTextureInfo()
89 const GrMockTextureInfo* GrBackendTexture::getMockTextureInfo() const { in getMockTextureInfo()
DGrBackendTextureImageGenerator.cpp32 static GrBackendTexture make_backend_texture_from_handle(GrBackend backend, in make_backend_texture_from_handle()
39 return GrBackendTexture(width, height, config, *glInfo); in make_backend_texture_from_handle()
44 return GrBackendTexture(width, height, *vkInfo); in make_backend_texture_from_handle()
49 return GrBackendTexture(width, height, config, *mockInfo); in make_backend_texture_from_handle()
52 return GrBackendTexture(); in make_backend_texture_from_handle()
76 GrBackendTexture backendTexture = make_backend_texture_from_handle(backend, in Make()
92 const GrBackendTexture& backendTex) in GrBackendTextureImageGenerator()
DGrContextPriv.h34 sk_sp<GrSurfaceContext> makeBackendSurfaceContext(const GrBackendTexture& tex,
41 const GrBackendTexture& tex,
54 const GrBackendTexture& tex,
DGrBackendTextureImageGenerator.h38 const GrBackendTexture&);
67 GrBackendTexture fBackendTexture;
DGrResourceProvider.h18 class GrBackendTexture; variable
87 sk_sp<GrTexture> wrapBackendTexture(const GrBackendTexture& tex,
204 sk_sp<GrRenderTarget> wrapBackendTextureAsRenderTarget(const GrBackendTexture&,
DGrGpu.h121 sk_sp<GrTexture> wrapBackendTexture(const GrBackendTexture&, GrSurfaceOrigin,
132 sk_sp<GrRenderTarget> wrapBackendTextureAsRenderTarget(const GrBackendTexture&,
547 virtual sk_sp<GrTexture> onWrapBackendTexture(const GrBackendTexture&,
554 virtual sk_sp<GrRenderTarget> onWrapBackendTextureAsRenderTarget(const GrBackendTexture&,
DGrResourceProvider.cpp240 sk_sp<GrTexture> GrResourceProvider::wrapBackendTexture(const GrBackendTexture& tex, in wrapBackendTexture()
474 const GrBackendTexture& tex, GrSurfaceOrigin origin, int sampleCnt) in wrapBackendTextureAsRenderTarget()
DGrGpu.cpp176 sk_sp<GrTexture> GrGpu::wrapBackendTexture(const GrBackendTexture& backendTex, in wrapBackendTexture()
218 sk_sp<GrRenderTarget> GrGpu::wrapBackendTextureAsRenderTarget(const GrBackendTexture& tex, in wrapBackendTextureAsRenderTarget()
/external/skia/tests/
DVkWrapTests.cpp38 GrBackendTexture backendTex = GrBackendTexture(kW, kH, *imageInfo); in wrap_tex_test()
49 backendTex = GrBackendTexture(kW, kH, backendCopy); in wrap_tex_test()
66 backendTex = GrBackendTexture(kW, kH, backendCopy); in wrap_tex_test()
81 backendTex = GrBackendTexture(kW, kH, backendCopy); in wrap_tex_test()
132 GrBackendTexture backendTex = GrBackendTexture(kW, kH, *imageInfo); in wrap_trt_test()
143 backendTex = GrBackendTexture(kW, kH, backendCopy); in wrap_trt_test()
160 backendTex = GrBackendTexture(kW, kH, backendCopy); in wrap_trt_test()
176 backendTex = GrBackendTexture(kW, kH, backendCopy); in wrap_trt_test()
DRectangleTextureTest.cpp121 GrBackendTexture rectangleTex(kWidth, kHeight, kRGBA_8888_GrPixelConfig, rectangleInfo); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
DEGLImageTest.cpp138 GrBackendTexture backendTex(kSize, kSize, kRGBA_8888_GrPixelConfig, externalTexture); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
/external/skia/include/gpu/
DGrBackendSurface.h19 class SK_API GrBackendTexture {
22 GrBackendTexture() : fConfig(kUnknown_GrPixelConfig) {} in GrBackendTexture() function
24 GrBackendTexture(int width,
30 GrBackendTexture(int width,
35 GrBackendTexture(int width,
63 GrBackendTexture(const GrBackendTextureDesc& desc, GrBackend backend);
/external/skia/src/image/
DSkImage_Gpu.cpp259 const GrBackendTexture& backendTex, in new_wrapped_texture_common()
292 GrBackendTexture tex(desc, ctx->contextPriv().getBackend()); in MakeFromTexture()
301 GrBackendTexture tex(desc, ctx->contextPriv().getBackend()); in MakeFromAdoptedTexture()
308 const GrBackendTexture& tex, GrSurfaceOrigin origin, in MakeFromTexture()
316 const GrBackendTexture& tex, GrSurfaceOrigin origin, in MakeFromAdoptedTexture()
322 static GrBackendTexture make_backend_texture_from_handle(GrBackend backend, in make_backend_texture_from_handle()
329 return GrBackendTexture(width, height, config, *glInfo); in make_backend_texture_from_handle()
334 return GrBackendTexture(width, height, *vkInfo); in make_backend_texture_from_handle()
339 return GrBackendTexture(width, height, config, *mockInfo); in make_backend_texture_from_handle()
342 return GrBackendTexture(); in make_backend_texture_from_handle()
[all …]
DSkSurface_Gpu.cpp213 GrBackendTexture tex(desc, context->contextPriv().getBackend()); in MakeFromBackendTexture()
217 sk_sp<SkSurface> SkSurface::MakeFromBackendTexture(GrContext* context, const GrBackendTexture& tex, in MakeFromBackendTexture()
298 GrBackendTexture tex(desc, context->contextPriv().getBackend()); in MakeFromBackendTextureAsRenderTarget()
304 const GrBackendTexture& tex, in MakeFromBackendTextureAsRenderTarget()
DSkSurface.cpp242 sk_sp<SkSurface> SkSurface::MakeFromBackendTexture(GrContext*, const GrBackendTexture&, in MakeFromBackendTexture() argument
271 const GrBackendTexture&, in MakeFromBackendTextureAsRenderTarget() argument
DSkImage.cpp343 const GrBackendTexture& tex, GrSurfaceOrigin origin, in MakeFromTexture()
368 const GrBackendTexture& tex, GrSurfaceOrigin origin, in MakeFromAdoptedTexture()
/external/skia/include/core/
DSkImage.h27 class GrBackendTexture; variable
146 const GrBackendTexture& tex, GrSurfaceOrigin origin, in MakeFromTexture()
159 const GrBackendTexture&, GrSurfaceOrigin origin,
199 const GrBackendTexture&, GrSurfaceOrigin,
DSkSurface.h98 static sk_sp<SkSurface> MakeFromBackendTexture(GrContext*, const GrBackendTexture&,
130 const GrBackendTexture&,
/external/skia/src/gpu/mock/
DGrMockGpu.h72 sk_sp<GrTexture> onWrapBackendTexture(const GrBackendTexture&, in onWrapBackendTexture() argument
85 sk_sp<GrRenderTarget> onWrapBackendTextureAsRenderTarget(const GrBackendTexture&, in onWrapBackendTextureAsRenderTarget() argument
/external/skia/src/gpu/mtl/
DGrMtlGpu.h75 sk_sp<GrTexture> onWrapBackendTexture(const GrBackendTexture&, in onWrapBackendTexture() argument
88 sk_sp<GrRenderTarget> onWrapBackendTextureAsRenderTarget(const GrBackendTexture&, in onWrapBackendTextureAsRenderTarget() argument
/external/skia/tools/gpu/
DGrTest.h21 GrBackendTexture CreateBackendTexture(GrBackend, int width, int height,
DGrTest.cpp62 GrBackendTexture CreateBackendTexture(GrBackend backend, int width, int height, in CreateBackendTexture()
67 return GrBackendTexture(width, height, *vkInfo); in CreateBackendTexture()
72 return GrBackendTexture(width, height, config, *glInfo); in CreateBackendTexture()
/external/skia/src/gpu/vk/
DGrVkGpu.h179 sk_sp<GrTexture> onWrapBackendTexture(const GrBackendTexture&,
187 sk_sp<GrRenderTarget> onWrapBackendTextureAsRenderTarget(const GrBackendTexture&,
/external/skia/include/private/
DGrSurfaceProxy.h16 class GrBackendTexture; variable
203 static sk_sp<GrTextureProxy> MakeWrappedBackend(GrContext*, GrBackendTexture&, GrSurfaceOrigin);
/external/skia/gm/
Drectangletexture.cpp112 GrBackendTexture rectangleTex(width, height, kRGBA_8888_GrPixelConfig, info); in createRectangleTextureImg()

12