Lines Matching refs:config
103 * Call to note that a color config has been verified as a valid color
107 void markConfigAsValidColorAttachment(GrPixelConfig config) {
108 fVerifiedColorConfigs.markVerified(config);
112 * Call to check whether a config has been verified as a valid color
115 bool isConfigVerifiedColorAttachment(GrPixelConfig config) const {
116 return fVerifiedColorConfigs.isVerified(config);
120 * Call to note that a color config / stencil format pair passed
126 GrPixelConfig config,
130 * Call to check whether color config / stencil format pair has already
134 GrPixelConfig config,
256 * performing glCheckFrameBufferStatus for the same config.
272 void markVerified(GrPixelConfig config) {
276 int u32Idx = config / 32;
277 int bitIdx = config % 32;
281 bool isVerified(GrPixelConfig config) const {
285 int u32Idx = config / 32;
286 int bitIdx = config % 32;