Home
last modified time | relevance | path

Searched refs:GrPixelConfigIsSint (Results 1 – 10 of 10) sorted by relevance

/external/skia/src/gpu/
DGrGpu.cpp112 if (GrPixelConfigIsSint(desc.fConfig) && texels.count() > 1) { in check_texture_creation_params()
274 if (GrPixelConfigIsSint(dst->config()) != GrPixelConfigIsSint(src->config())) { in copySurface()
292 if (GrPixelConfigIsSint(srcSurface->config()) != GrPixelConfigIsSint(readConfig)) { in getReadPixelsInfo()
338 if (GrPixelConfigIsSint(dstSurface->config()) != GrPixelConfigIsSint(srcConfig)) { in getWritePixelsInfo()
376 if (GrPixelConfigIsSint(surface->config()) != GrPixelConfigIsSint(config)) { in readPixels()
412 if (GrPixelConfigIsSint(surface->config()) != GrPixelConfigIsSint(config)) { in writePixels()
447 if (GrPixelConfigIsSint(surface->config()) != GrPixelConfigIsSint(config)) { in transferPixels()
DGrTexturePriv.h54 if (GrPixelConfigIsSint(fTexture->config())) { in imageStorageType()
DGrContext.cpp281 if (GrPixelConfigIsSint(surface->config()) != GrPixelConfigIsSint(srcConfig)) { in writeSurfacePixels()
437 if (GrPixelConfigIsSint(src->config()) != GrPixelConfigIsSint(dstConfig)) { in readSurfacePixels()
DGrResourceProvider.cpp67 if (mipLevelCount > 1 && GrPixelConfigIsSint(desc.fConfig)) { in createMipMappedTexture()
/external/skia/src/gpu/gl/
DGrGLTexture.cpp24 SkASSERT(!GrPixelConfigIsSint(config)); in sampler_type()
28 SkASSERT(!GrPixelConfigIsSint(config)); in sampler_type()
30 } else if (GrPixelConfigIsSint(config)) { in sampler_type()
40 if (GrPixelConfigIsSint(config)) { in highest_filter_mode()
DGrGLCaps.cpp928 if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) { in readPixelsSupported()
DGrGLGpu.cpp870 useTexStorage &= texels.count() > 1 || GrPixelConfigIsSint(desc.fConfig); in allocate_and_populate_uncompressed_texture()
3326 SkASSERT(GrPixelConfigIsSint(dst->config()) == GrPixelConfigIsSint(src->config())); in can_blit_framebuffer_for_copy_surface()
4136 SkASSERT(!GrPixelConfigIsSint(texture->config())); in generateMipmap()
/external/skia/src/gpu/ops/
DGrCopySurfaceOp.cpp65 if (GrPixelConfigIsSint(dst->config()) != GrPixelConfigIsSint(src->config())) { in Make()
/external/skia/tests/
DImageStorageTest.cpp53 if (GrPixelConfigIsSint(tfp.fImageStorageAccess.texture()->config())) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/external/skia/include/gpu/
DGrTypes.h574 static inline bool GrPixelConfigIsSint(GrPixelConfig config) { in GrPixelConfigIsSint() function