Lines Matching refs:texProxy
81 GrTextureProxy* texProxy, in check_texture() argument
83 GrSurfaceProxy::UniqueID idBefore = texProxy->uniqueID(); in check_texture()
85 bool preinstantiated = texProxy->isInstantiated(); in check_texture()
86 REPORTER_ASSERT(reporter, texProxy->instantiate(provider)); in check_texture()
87 GrTexture* tex = texProxy->peekTexture(); in check_texture()
89 REPORTER_ASSERT(reporter, texProxy->uniqueID() == idBefore); in check_texture()
92 REPORTER_ASSERT(reporter, texProxy->uniqueID().asUInt() == tex->uniqueID().asUInt()); in check_texture()
94 REPORTER_ASSERT(reporter, texProxy->uniqueID().asUInt() != tex->uniqueID().asUInt()); in check_texture()
98 REPORTER_ASSERT(reporter, tex->width() == texProxy->width()); in check_texture()
99 REPORTER_ASSERT(reporter, tex->height() == texProxy->height()); in check_texture()
101 REPORTER_ASSERT(reporter, tex->width() >= texProxy->width()); in check_texture()
102 REPORTER_ASSERT(reporter, tex->height() >= texProxy->height()); in check_texture()
104 REPORTER_ASSERT(reporter, tex->config() == texProxy->config()); in check_texture()