/external/skia/src/gpu/ |
D | GrBackendSurface.cpp | 16 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()
|
D | GrBackendTextureImageGenerator.cpp | 32 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()
|
D | GrContextPriv.h | 34 sk_sp<GrSurfaceContext> makeBackendSurfaceContext(const GrBackendTexture& tex, 41 const GrBackendTexture& tex, 54 const GrBackendTexture& tex,
|
D | GrBackendTextureImageGenerator.h | 38 const GrBackendTexture&); 67 GrBackendTexture fBackendTexture;
|
D | GrResourceProvider.h | 18 class GrBackendTexture; variable 87 sk_sp<GrTexture> wrapBackendTexture(const GrBackendTexture& tex, 204 sk_sp<GrRenderTarget> wrapBackendTextureAsRenderTarget(const GrBackendTexture&,
|
D | GrGpu.h | 121 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&,
|
D | GrResourceProvider.cpp | 240 sk_sp<GrTexture> GrResourceProvider::wrapBackendTexture(const GrBackendTexture& tex, in wrapBackendTexture() 474 const GrBackendTexture& tex, GrSurfaceOrigin origin, int sampleCnt) in wrapBackendTextureAsRenderTarget()
|
D | GrGpu.cpp | 176 sk_sp<GrTexture> GrGpu::wrapBackendTexture(const GrBackendTexture& backendTex, in wrapBackendTexture() 218 sk_sp<GrRenderTarget> GrGpu::wrapBackendTextureAsRenderTarget(const GrBackendTexture& tex, in wrapBackendTextureAsRenderTarget()
|
/external/skia/tests/ |
D | VkWrapTests.cpp | 38 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()
|
D | RectangleTextureTest.cpp | 121 GrBackendTexture rectangleTex(kWidth, kHeight, kRGBA_8888_GrPixelConfig, rectangleInfo); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
|
D | EGLImageTest.cpp | 138 GrBackendTexture backendTex(kSize, kSize, kRGBA_8888_GrPixelConfig, externalTexture); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
|
/external/skia/include/gpu/ |
D | GrBackendSurface.h | 19 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/ |
D | SkImage_Gpu.cpp | 259 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 …]
|
D | SkSurface_Gpu.cpp | 213 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()
|
D | SkSurface.cpp | 242 sk_sp<SkSurface> SkSurface::MakeFromBackendTexture(GrContext*, const GrBackendTexture&, in MakeFromBackendTexture() argument 271 const GrBackendTexture&, in MakeFromBackendTextureAsRenderTarget() argument
|
D | SkImage.cpp | 343 const GrBackendTexture& tex, GrSurfaceOrigin origin, in MakeFromTexture() 368 const GrBackendTexture& tex, GrSurfaceOrigin origin, in MakeFromAdoptedTexture()
|
/external/skia/include/core/ |
D | SkImage.h | 27 class GrBackendTexture; variable 146 const GrBackendTexture& tex, GrSurfaceOrigin origin, in MakeFromTexture() 159 const GrBackendTexture&, GrSurfaceOrigin origin, 199 const GrBackendTexture&, GrSurfaceOrigin,
|
D | SkSurface.h | 98 static sk_sp<SkSurface> MakeFromBackendTexture(GrContext*, const GrBackendTexture&, 130 const GrBackendTexture&,
|
/external/skia/src/gpu/mock/ |
D | GrMockGpu.h | 72 sk_sp<GrTexture> onWrapBackendTexture(const GrBackendTexture&, in onWrapBackendTexture() argument 85 sk_sp<GrRenderTarget> onWrapBackendTextureAsRenderTarget(const GrBackendTexture&, in onWrapBackendTextureAsRenderTarget() argument
|
/external/skia/src/gpu/mtl/ |
D | GrMtlGpu.h | 75 sk_sp<GrTexture> onWrapBackendTexture(const GrBackendTexture&, in onWrapBackendTexture() argument 88 sk_sp<GrRenderTarget> onWrapBackendTextureAsRenderTarget(const GrBackendTexture&, in onWrapBackendTextureAsRenderTarget() argument
|
/external/skia/tools/gpu/ |
D | GrTest.h | 21 GrBackendTexture CreateBackendTexture(GrBackend, int width, int height,
|
D | GrTest.cpp | 62 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/ |
D | GrVkGpu.h | 179 sk_sp<GrTexture> onWrapBackendTexture(const GrBackendTexture&, 187 sk_sp<GrRenderTarget> onWrapBackendTextureAsRenderTarget(const GrBackendTexture&,
|
/external/skia/include/private/ |
D | GrSurfaceProxy.h | 16 class GrBackendTexture; variable 203 static sk_sp<GrTextureProxy> MakeWrappedBackend(GrContext*, GrBackendTexture&, GrSurfaceOrigin);
|
/external/skia/gm/ |
D | rectangletexture.cpp | 112 GrBackendTexture rectangleTex(width, height, kRGBA_8888_GrPixelConfig, info); in createRectangleTextureImg()
|