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()
56 sk_sp<GrDawnTexture> result; in Make()
64 result = sk_sp<GrDawnTexture>( in Make()
65 new GrDawnTexture(gpu, dimensions, info, status)); in Make()
71 GrBackendFormat GrDawnTexture::backendFormat() const { in backendFormat()
75 sk_sp<GrDawnTexture> GrDawnTexture::MakeWrapped(GrDawnGpu* gpu, SkISize dimensions, in MakeWrapped()
79 sk_sp<GrDawnTexture> tex; in MakeWrapped()
83 tex = sk_sp<GrDawnTexture>(new GrDawnTextureRenderTarget( in MakeWrapped()
86 tex = sk_sp<GrDawnTexture>( in MakeWrapped()
87 new GrDawnTexture(gpu, dimensions, info, status)); in MakeWrapped()
96 GrDawnTexture::~GrDawnTexture() { in ~GrDawnTexture()
99 GrDawnGpu* GrDawnTexture::getDawnGpu() const { in getDawnGpu()
104 void GrDawnTexture::onRelease() { in onRelease()
108 void GrDawnTexture::onAbandon() { in onAbandon()
112 GrBackendTexture GrDawnTexture::getBackendTexture() const { in getBackendTexture()