mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 22:58:46 +00:00
wgpu: fix examples after changing color to an array
This commit is contained in:
Vendored
+1
-1
@@ -158,7 +158,7 @@ frame :: proc "c" (dt: f32) {
|
|||||||
view = frame,
|
view = frame,
|
||||||
loadOp = .Clear,
|
loadOp = .Clear,
|
||||||
storeOp = .Store,
|
storeOp = .Store,
|
||||||
clearValue = { r = 0, g = 1, b = 0, a = 1 },
|
clearValue = { 0, 1, 0, 1 },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|||||||
Vendored
+1
-1
@@ -158,7 +158,7 @@ frame :: proc "c" (dt: f32) {
|
|||||||
view = frame,
|
view = frame,
|
||||||
loadOp = .Clear,
|
loadOp = .Clear,
|
||||||
storeOp = .Store,
|
storeOp = .Store,
|
||||||
clearValue = { r = 0, g = 1, b = 0, a = 1 },
|
clearValue = { 0, 1, 0, 1 },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user