Home
last modified time | relevance | path

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

/external/skia/src/gpu/text/
DGrFontScaler.cpp31 return kA8_GrMaskFormat; in getMaskFormat()
38 return kA8_GrMaskFormat; in getMaskFormat()
55 return kA8_GrMaskFormat; in getPackedGlyphMaskFormat()
62 return kA8_GrMaskFormat; in getPackedGlyphMaskFormat()
144 case kA8_GrMaskFormat:{ in getPackedGlyphImage()
DGrBatchFontCache.cpp49 fAtlasConfigs[kA8_GrMaskFormat].fWidth = 2048; in GrBatchFontCache()
50 fAtlasConfigs[kA8_GrMaskFormat].fHeight = 2048; in GrBatchFontCache()
51 fAtlasConfigs[kA8_GrMaskFormat].fLog2Width = 11; in GrBatchFontCache()
52 fAtlasConfigs[kA8_GrMaskFormat].fLog2Height = 11; in GrBatchFontCache()
53 fAtlasConfigs[kA8_GrMaskFormat].fPlotWidth = 512; in GrBatchFontCache()
54 fAtlasConfigs[kA8_GrMaskFormat].fPlotHeight = 256; in GrBatchFontCache()
DGrBatchFontCache.h198 kA8_GrMaskFormat, in MaskFormatToAtlasIndex()
DGrAtlasTextBlob.h167 case kA8_GrMaskFormat: in GetVertexStride()
367 , fMaskFormat(kA8_GrMaskFormat) in SubRunInfo()
DGrTextUtils.cpp443 if (kA8_GrMaskFormat != glyph->fMaskFormat) { in DfAppendGlyph()
/external/skia/src/gpu/
DGrTest.cpp30 configs[kA8_GrMaskFormat].fWidth = dim; in SetupAlwaysEvictAtlas()
31 configs[kA8_GrMaskFormat].fHeight = dim; in SetupAlwaysEvictAtlas()
32 configs[kA8_GrMaskFormat].fLog2Width = SkNextLog2(dim); in SetupAlwaysEvictAtlas()
33 configs[kA8_GrMaskFormat].fLog2Height = SkNextLog2(dim); in SetupAlwaysEvictAtlas()
34 configs[kA8_GrMaskFormat].fPlotWidth = dim; in SetupAlwaysEvictAtlas()
35 configs[kA8_GrMaskFormat].fPlotHeight = dim; in SetupAlwaysEvictAtlas()
/external/skia/src/gpu/batches/
DGrAtlasTextBatch.h40 case kA8_GrMaskFormat: in CreateBitmap()
127 return kA8_GrMaskFormat; in maskFormat()
129 return kA8_GrMaskFormat; // suppress warning in maskFormat()
/external/skia/src/gpu/effects/
DGrBitmapTextGeoProc.cpp143 bool hasVertexColor = kA8_GrMaskFormat == fMaskFormat || in GrBitmapTextGeoProc()
185 format = kA8_GrMaskFormat; in TestCreate()
/external/skia/include/gpu/
DGrTypes.h171 kA8_GrMaskFormat, //!< 1-byte per pixel enumerator
189 static_assert(kA8_GrMaskFormat == 0, "enum_order_dependency"); in GrMaskFormatBytesPerPixel()
/external/skia/samplecode/
DSampleAnimatedText.cpp109 GrTexture* tex = grContext->getFontAtlasTexture(GrMaskFormat::kA8_GrMaskFormat); in onDrawContent()