Lines Matching refs:GrDawnTexture
14 GrDawnTexture::GrDawnTexture(GrDawnGpu* gpu, in GrDawnTexture() function in GrDawnTexture
22 sk_sp<GrDawnTexture> GrDawnTexture::Make(GrDawnGpu* gpu, SkISize dimensions, in Make()
54 sk_sp<GrDawnTexture> result; in Make()
62 result = sk_sp<GrDawnTexture>( in Make()
63 new GrDawnTexture(gpu, dimensions, info, status)); in Make()
69 GrBackendFormat GrDawnTexture::backendFormat() const { in backendFormat()
73 sk_sp<GrDawnTexture> GrDawnTexture::MakeWrapped(GrDawnGpu* gpu, SkISize dimensions, in MakeWrapped()
77 sk_sp<GrDawnTexture> tex; in MakeWrapped()
81 tex = sk_sp<GrDawnTexture>(new GrDawnTextureRenderTarget( in MakeWrapped()
84 tex = sk_sp<GrDawnTexture>( in MakeWrapped()
85 new GrDawnTexture(gpu, dimensions, info, status)); in MakeWrapped()
94 GrDawnTexture::~GrDawnTexture() { in ~GrDawnTexture()
97 GrDawnGpu* GrDawnTexture::getDawnGpu() const { in getDawnGpu()
102 void GrDawnTexture::onRelease() { in onRelease()
106 void GrDawnTexture::onAbandon() { in onAbandon()
110 GrBackendTexture GrDawnTexture::getBackendTexture() const { in getBackendTexture()