Lines Matching refs:texProxy
80 GrTextureProxy* texProxy, in check_texture() argument
82 GrSurfaceProxy::UniqueID idBefore = texProxy->uniqueID(); in check_texture()
84 bool preinstantiated = texProxy->isInstantiated(); in check_texture()
85 REPORTER_ASSERT(reporter, texProxy->instantiate(provider)); in check_texture()
86 GrTexture* tex = texProxy->peekTexture(); in check_texture()
88 REPORTER_ASSERT(reporter, texProxy->uniqueID() == idBefore); in check_texture()
91 REPORTER_ASSERT(reporter, texProxy->uniqueID().asUInt() == tex->uniqueID().asUInt()); in check_texture()
93 REPORTER_ASSERT(reporter, texProxy->uniqueID().asUInt() != tex->uniqueID().asUInt()); in check_texture()
97 REPORTER_ASSERT(reporter, tex->width() == texProxy->width()); in check_texture()
98 REPORTER_ASSERT(reporter, tex->height() == texProxy->height()); in check_texture()
100 REPORTER_ASSERT(reporter, tex->width() >= texProxy->width()); in check_texture()
101 REPORTER_ASSERT(reporter, tex->height() >= texProxy->height()); in check_texture()
103 REPORTER_ASSERT(reporter, tex->config() == texProxy->config()); in check_texture()