Home
last modified time | relevance | path

Searched refs:colorTargetState (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/dawn/src/tests/unittests/wire/
DWireOptionalTests.cpp82 WGPUColorTargetState colorTargetState = {}; in TEST_F() local
83 colorTargetState.format = WGPUTextureFormat_RGBA8Unorm; in TEST_F()
84 colorTargetState.blend = &blendState; in TEST_F()
85 colorTargetState.writeMask = WGPUColorWriteMask_All; in TEST_F()
126 fragment.targets = &colorTargetState; in TEST_F()
DWireArgumentTests.cpp111 WGPUColorTargetState colorTargetState = {}; in TEST_F() local
112 colorTargetState.format = WGPUTextureFormat_RGBA8Unorm; in TEST_F()
113 colorTargetState.blend = &blendState; in TEST_F()
114 colorTargetState.writeMask = WGPUColorWriteMask_All; in TEST_F()
155 fragment.targets = &colorTargetState; in TEST_F()
/third_party/skia/experimental/webgpu-bazel/src/
Dbindings.cpp36 wgpu::ColorTargetState colorTargetState{}; in createRenderPipeline() local
37 colorTargetState.format = wgpu::TextureFormat::BGRA8Unorm; in createRenderPipeline()
43 fragmentState.targets = &colorTargetState; in createRenderPipeline()
/third_party/skia/src/gpu/dawn/
DGrDawnProgramBuilder.cpp385 wgpu::ColorTargetState colorTargetState; in Build() local
386 colorTargetState.format = colorFormat; in Build()
387 colorTargetState.blend = &blendState; in Build()
390 colorTargetState.writeMask = writeColor ? wgpu::ColorWriteMask::All in Build()
397 fragmentState.targets = &colorTargetState; in Build()
DGrDawnGpu.cpp728 wgpu::ColorTargetState colorTargetState; in onRegenerateMipMapLevels() local
729 colorTargetState.format = static_cast<GrDawnTexture*>(tex)->format(); in onRegenerateMipMapLevels()
735 fragmentState.targets = &colorTargetState; in onRegenerateMipMapLevels()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DColorStateTests.cpp62 void SetupSingleSourcePipelines(wgpu::ColorTargetState colorTargetState) { in SetupSingleSourcePipelines() argument
87 testDescriptor.cTargets[0] = colorTargetState; in SetupSingleSourcePipelines()