Lines Matching refs:configs

33     GrDrawOpAtlasConfig configs[3];  in SetupAlwaysEvictAtlas()  local
34 configs[kA8_GrMaskFormat].fWidth = dim; in SetupAlwaysEvictAtlas()
35 configs[kA8_GrMaskFormat].fHeight = dim; in SetupAlwaysEvictAtlas()
36 configs[kA8_GrMaskFormat].fLog2Width = SkNextLog2(dim); in SetupAlwaysEvictAtlas()
37 configs[kA8_GrMaskFormat].fLog2Height = SkNextLog2(dim); in SetupAlwaysEvictAtlas()
38 configs[kA8_GrMaskFormat].fPlotWidth = dim; in SetupAlwaysEvictAtlas()
39 configs[kA8_GrMaskFormat].fPlotHeight = dim; in SetupAlwaysEvictAtlas()
41 configs[kA565_GrMaskFormat].fWidth = dim; in SetupAlwaysEvictAtlas()
42 configs[kA565_GrMaskFormat].fHeight = dim; in SetupAlwaysEvictAtlas()
43 configs[kA565_GrMaskFormat].fLog2Width = SkNextLog2(dim); in SetupAlwaysEvictAtlas()
44 configs[kA565_GrMaskFormat].fLog2Height = SkNextLog2(dim); in SetupAlwaysEvictAtlas()
45 configs[kA565_GrMaskFormat].fPlotWidth = dim; in SetupAlwaysEvictAtlas()
46 configs[kA565_GrMaskFormat].fPlotHeight = dim; in SetupAlwaysEvictAtlas()
48 configs[kARGB_GrMaskFormat].fWidth = dim; in SetupAlwaysEvictAtlas()
49 configs[kARGB_GrMaskFormat].fHeight = dim; in SetupAlwaysEvictAtlas()
50 configs[kARGB_GrMaskFormat].fLog2Width = SkNextLog2(dim); in SetupAlwaysEvictAtlas()
51 configs[kARGB_GrMaskFormat].fLog2Height = SkNextLog2(dim); in SetupAlwaysEvictAtlas()
52 configs[kARGB_GrMaskFormat].fPlotWidth = dim; in SetupAlwaysEvictAtlas()
53 configs[kARGB_GrMaskFormat].fPlotHeight = dim; in SetupAlwaysEvictAtlas()
55 context->setTextContextAtlasSizes_ForTesting(configs); in SetupAlwaysEvictAtlas()
71 void GrContext::setTextContextAtlasSizes_ForTesting(const GrDrawOpAtlasConfig* configs) { in setTextContextAtlasSizes_ForTesting() argument
72 fAtlasGlyphCache->setAtlasSizes_ForTesting(configs); in setTextContextAtlasSizes_ForTesting()