Home
last modified time | relevance | path

Searched refs:texturePriv (Results 1 – 25 of 54) sorted by relevance

123

/external/skia/tests/
DGrMipMappedTest.cpp85 REPORTER_ASSERT(reporter, GrMipMapped::kYes == texture->texturePriv().mipMapped()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
87 REPORTER_ASSERT(reporter, texture->texturePriv().mipMapsAreDirty()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
89 REPORTER_ASSERT(reporter, !texture->texturePriv().mipMapsAreDirty()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
92 REPORTER_ASSERT(reporter, GrMipMapped::kNo == texture->texturePriv().mipMapped()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
263 REPORTER_ASSERT(reporter, mipMapped == texture->texturePriv().mipMapped()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
275 REPORTER_ASSERT(reporter, mipMapped == texture->texturePriv().mipMapped()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
DRectangleTextureTest.cpp148 SkASSERT(rectProxy->peekTexture()->texturePriv().mipMapped() == GrMipMapped::kNo); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
151 SkASSERT(rectProxy->peekTexture()->texturePriv().textureType() == in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
154 SkASSERT(rectProxy->peekTexture()->texturePriv().hasRestrictedSampling()); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
DEGLImageTest.cpp171 REPORTER_ASSERT(reporter, proxy->peekTexture()->texturePriv().mipMapped() == GrMipMapped::kNo); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
175 proxy->peekTexture()->texturePriv().textureType() == GrTextureType::kExternal); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
177 REPORTER_ASSERT(reporter, proxy->peekTexture()->texturePriv().hasRestrictedSampling()); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
DGrTextureMipMapInvalidationTest.cpp20 return GrMipMapped::kYes == texture->texturePriv().mipMapped(); in DEF_GPUTEST_FOR_NULLGL_CONTEXT()
24 return surf->makeImageSnapshot()->getTexture()->texturePriv().mipMapsAreDirty(); in DEF_GPUTEST_FOR_NULLGL_CONTEXT()
/external/skqp/tests/
DGrMipMappedTest.cpp85 REPORTER_ASSERT(reporter, GrMipMapped::kYes == texture->texturePriv().mipMapped()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
87 REPORTER_ASSERT(reporter, texture->texturePriv().mipMapsAreDirty()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
89 REPORTER_ASSERT(reporter, !texture->texturePriv().mipMapsAreDirty()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
92 REPORTER_ASSERT(reporter, GrMipMapped::kNo == texture->texturePriv().mipMapped()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
263 REPORTER_ASSERT(reporter, mipMapped == texture->texturePriv().mipMapped()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
275 REPORTER_ASSERT(reporter, mipMapped == texture->texturePriv().mipMapped()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
DEGLImageTest.cpp171 REPORTER_ASSERT(reporter, proxy->peekTexture()->texturePriv().mipMapped() == GrMipMapped::kNo); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
175 proxy->peekTexture()->texturePriv().textureType() == GrTextureType::kExternal); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
177 REPORTER_ASSERT(reporter, proxy->peekTexture()->texturePriv().hasRestrictedSampling()); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
DRectangleTextureTest.cpp148 SkASSERT(rectProxy->peekTexture()->texturePriv().mipMapped() == GrMipMapped::kNo); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
151 SkASSERT(rectProxy->peekTexture()->texturePriv().textureType() == in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
154 SkASSERT(rectProxy->peekTexture()->texturePriv().hasRestrictedSampling()); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
DGrTextureMipMapInvalidationTest.cpp20 return GrMipMapped::kYes == texture->texturePriv().mipMapped(); in DEF_GPUTEST_FOR_NULLGL_CONTEXT()
24 return surf->makeImageSnapshot()->getTexture()->texturePriv().mipMapsAreDirty(); in DEF_GPUTEST_FOR_NULLGL_CONTEXT()
/external/skia/src/gpu/gl/
DGrGLTexture.cpp84 return target_from_texture_type(this->texturePriv().textureType()); in target()
104 info.fTarget = target_from_texture_type(this->texturePriv().textureType()); in getBackendTexture()
107 return GrBackendTexture(this->width(), this->height(), this->texturePriv().mipMapped(), info); in getBackendTexture()
112 target_from_texture_type(this->texturePriv().textureType())); in backendFormat()
DGrGLTextureRenderTarget.cpp70 this->texturePriv().mipMapped()); in onGpuMemorySize()
/external/skqp/src/gpu/gl/
DGrGLTexture.cpp84 return target_from_texture_type(this->texturePriv().textureType()); in target()
106 info.fTarget = target_from_texture_type(this->texturePriv().textureType()); in getBackendTexture()
109 return GrBackendTexture(this->width(), this->height(), this->texturePriv().mipMapped(), info); in getBackendTexture()
114 target_from_texture_type(this->texturePriv().textureType())); in backendFormat()
/external/skqp/src/gpu/
DGrTextureProxy.cpp54 , fMipMapped(fTarget->asTexture()->texturePriv().mipMapped()) in GrTextureProxy()
132 return this->peekTexture()->texturePriv().mipMapped(); in mipMapped()
176 GrMipMapped::kYes == surface->asTexture()->texturePriv().mipMapped()); in onValidateSurface()
178 SkASSERT(surface->asTexture()->texturePriv().textureType() == this->textureType()); in onValidateSurface()
DGrTexturePriv.h73 inline GrTexturePriv GrTexture::texturePriv() { return GrTexturePriv(this); } in texturePriv() function
75 inline const GrTexturePriv GrTexture::texturePriv () const { in texturePriv() function
DGrTexture.cpp35 this->texturePriv().mipMapped(), false); in onGpuMemorySize()
88 this->texturePriv().mipMapped(), key); in computeScratchKey()
DGrTextureRenderTargetProxy.cpp121 GrMipMapped::kYes == surface->asTexture()->texturePriv().mipMapped()); in onValidateSurface()
127 SkASSERT(surface->asTexture()->texturePriv().textureType() == this->textureType()); in onValidateSurface()
DGrGpu.cpp337 SkASSERT(texture->texturePriv().mipMapped() == GrMipMapped::kYes); in regenerateMipMapLevels()
338 SkASSERT(texture->texturePriv().mipMapsAreDirty()); in regenerateMipMapLevels()
344 texture->texturePriv().markMipMapsClean(); in regenerateMipMapLevels()
373 texture->texturePriv().markMipMapsDirty(); in didWriteToSurface()
/external/skia/src/gpu/
DGrTextureProxy.cpp54 , fMipMapped(fTarget->asTexture()->texturePriv().mipMapped()) in GrTextureProxy()
132 return this->peekTexture()->texturePriv().mipMapped(); in mipMapped()
176 GrMipMapped::kYes == surface->asTexture()->texturePriv().mipMapped()); in onValidateSurface()
178 SkASSERT(surface->asTexture()->texturePriv().textureType() == this->textureType()); in onValidateSurface()
DGrTexturePriv.h73 inline GrTexturePriv GrTexture::texturePriv() { return GrTexturePriv(this); } in texturePriv() function
75 inline const GrTexturePriv GrTexture::texturePriv () const { in texturePriv() function
DGrTexture.cpp35 this->texturePriv().mipMapped(), false); in onGpuMemorySize()
88 this->texturePriv().mipMapped(), key); in computeScratchKey()
DGrTextureRenderTargetProxy.cpp121 GrMipMapped::kYes == surface->asTexture()->texturePriv().mipMapped()); in onValidateSurface()
127 SkASSERT(surface->asTexture()->texturePriv().textureType() == this->textureType()); in onValidateSurface()
DGrGpu.cpp336 SkASSERT(texture->texturePriv().mipMapped() == GrMipMapped::kYes); in regenerateMipMapLevels()
337 SkASSERT(texture->texturePriv().mipMapsAreDirty()); in regenerateMipMapLevels()
343 texture->texturePriv().markMipMapsClean(); in regenerateMipMapLevels()
377 texture->texturePriv().markMipMapsDirty(); in didWriteToSurface()
/external/skia/include/gpu/
DGrTexture.h66 inline GrTexturePriv texturePriv();
67 inline const GrTexturePriv texturePriv() const;
/external/skqp/include/gpu/
DGrTexture.h76 inline GrTexturePriv texturePriv();
77 inline const GrTexturePriv texturePriv() const;
/external/skia/src/gpu/mock/
DGrMockTexture.h37 return GrBackendTexture(this->width(), this->height(), this->texturePriv().mipMapped(), in getBackendTexture()
180 this->texturePriv().mipMapped()); in onGpuMemorySize()
186 this->texturePriv().mipMapped(), key); in computeScratchKey()
/external/skqp/src/gpu/mock/
DGrMockTexture.h37 return GrBackendTexture(this->width(), this->height(), this->texturePriv().mipMapped(), in getBackendTexture()
209 this->texturePriv().mipMapped()); in onGpuMemorySize()
215 this->texturePriv().mipMapped(), key); in computeScratchKey()

123