Lines Matching refs:texProxy
84 GrTextureProxy* texProxy, in check_texture() argument
87 GrSurfaceProxy::UniqueID idBefore = texProxy->uniqueID(); in check_texture()
89 REPORTER_ASSERT(reporter, texProxy->instantiate(provider)); in check_texture()
90 GrTexture* tex = texProxy->priv().peekTexture(); in check_texture()
92 REPORTER_ASSERT(reporter, texProxy->uniqueID() == idBefore); in check_texture()
95 REPORTER_ASSERT(reporter, texProxy->uniqueID().asUInt() == tex->uniqueID().asUInt()); in check_texture()
98 REPORTER_ASSERT(reporter, texProxy->uniqueID().asUInt() != tex->uniqueID().asUInt()); in check_texture()
101 REPORTER_ASSERT(reporter, tex->origin() == texProxy->origin()); in check_texture()
103 REPORTER_ASSERT(reporter, tex->width() == texProxy->width()); in check_texture()
104 REPORTER_ASSERT(reporter, tex->height() == texProxy->height()); in check_texture()
106 REPORTER_ASSERT(reporter, tex->width() >= texProxy->width()); in check_texture()
107 REPORTER_ASSERT(reporter, tex->height() >= texProxy->height()); in check_texture()
109 REPORTER_ASSERT(reporter, tex->config() == texProxy->config()); in check_texture()