HomeSort by relevance Sort by last modified time
    Searched refs:texProxy (Results 1 - 8 of 8) sorted by null

  /external/skqp/tests/
ProxyTest.cpp 80 GrTextureProxy* texProxy,
83 GrSurfaceProxy::UniqueID idBefore = texProxy->uniqueID();
85 REPORTER_ASSERT(reporter, texProxy->instantiate(provider));
86 GrTexture* tex = texProxy->priv().peekTexture();
88 REPORTER_ASSERT(reporter, texProxy->uniqueID() == idBefore);
91 REPORTER_ASSERT(reporter, texProxy->uniqueID().asUInt() == tex->uniqueID().asUInt());
94 REPORTER_ASSERT(reporter, texProxy->uniqueID().asUInt() != tex->uniqueID().asUInt());
98 REPORTER_ASSERT(reporter, tex->width() == texProxy->width());
99 REPORTER_ASSERT(reporter, tex->height() == texProxy->height());
101 REPORTER_ASSERT(reporter, tex->width() >= texProxy->width())
    [all...]
GrMipMappedTest.cpp 250 GrTextureProxy* texProxy = device->accessRenderTargetContext()->asTextureProxy();
251 REPORTER_ASSERT(reporter, mipMapped == texProxy->mipMapped());
253 texProxy->instantiate(resourceProvider);
254 GrTexture* texture = texProxy->priv().peekTexture();
262 texProxy = as_IB(image)->peekProxy();
263 REPORTER_ASSERT(reporter, mipMapped == texProxy->mipMapped());
265 texProxy->instantiate(resourceProvider);
266 texture = texProxy->priv().peekTexture();
  /external/skia/tests/
ProxyTest.cpp 75 GrTextureProxy* texProxy,
77 GrSurfaceProxy::UniqueID idBefore = texProxy->uniqueID();
79 REPORTER_ASSERT(reporter, texProxy->instantiate(provider));
80 GrTexture* tex = texProxy->priv().peekTexture();
82 REPORTER_ASSERT(reporter, texProxy->uniqueID() == idBefore);
84 REPORTER_ASSERT(reporter, texProxy->uniqueID().asUInt() != tex->uniqueID().asUInt());
87 REPORTER_ASSERT(reporter, tex->width() == texProxy->width());
88 REPORTER_ASSERT(reporter, tex->height() == texProxy->height());
90 REPORTER_ASSERT(reporter, tex->width() >= texProxy->width());
91 REPORTER_ASSERT(reporter, tex->height() >= texProxy->height())
    [all...]
GrMipMappedTest.cpp 257 GrTextureProxy* texProxy = device->accessRenderTargetContext()->asTextureProxy();
258 REPORTER_ASSERT(reporter, mipMapped == texProxy->mipMapped());
260 texProxy->instantiate(resourceProvider);
261 GrTexture* texture = texProxy->priv().peekTexture();
269 texProxy = as_IB(image)->peekProxy();
270 REPORTER_ASSERT(reporter, mipMapped == texProxy->mipMapped());
272 texProxy->instantiate(resourceProvider);
273 texture = texProxy->priv().peekTexture();
  /external/skia/src/gpu/
GrAHardwareBufferImageGenerator.cpp 122 sk_sp<GrTextureProxy> texProxy = GrSurfaceProxy::Copy(context, proxy.get(), mipMapped,
124 if (!makingASubset && texProxy) {
129 SkASSERT(GrMipMapped::kYes == texProxy->mipMapped());
140 texProxy->instantiate(context->contextPriv().resourceProvider());
141 GrTexture* texture = texProxy->priv().peekTexture();
145 return texProxy;
GrRenderTargetContext.cpp     [all...]
  /external/skqp/src/gpu/
GrAHardwareBufferImageGenerator.cpp 122 sk_sp<GrTextureProxy> texProxy = GrSurfaceProxy::Copy(context, proxy.get(), mipMapped,
124 if (!makingASubset && texProxy) {
129 SkASSERT(GrMipMapped::kYes == texProxy->mipMapped());
140 texProxy->instantiate(context->contextPriv().resourceProvider());
141 GrTexture* texture = texProxy->priv().peekTexture();
145 return texProxy;
GrRenderTargetContext.cpp     [all...]

Completed in 100 milliseconds