Lines Matching refs:dawnFormat
42 wgpu::TextureFormat dawnFormat; in isFormatTexturable() local
43 return format.asDawnFormat(&dawnFormat); in isFormatTexturable()
74 wgpu::TextureFormat dawnFormat; in isFormatRenderable() local
75 if (!format.isValid() || sampleCount > 1 || !format.asDawnFormat(&dawnFormat)) { in isFormatRenderable()
79 return GrDawnFormatIsRenderable(dawnFormat); in isFormatRenderable()
101 wgpu::TextureFormat dawnFormat; in getRenderTargetSampleCount() local
102 if (!backendFormat.asDawnFormat(&dawnFormat)) { in getRenderTargetSampleCount()
105 return GrDawnFormatIsRenderable(dawnFormat) ? 1 : 0; in getRenderTargetSampleCount()
135 wgpu::TextureFormat dawnFormat; in computeFormatKey() local
136 SkAssertResult(format.asDawnFormat(&dawnFormat)); in computeFormatKey()
142 return (uint64_t)dawnFormat; in computeFormatKey()