mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-14 19:31:25 +00:00
This got left out of the large reshuffle of dbc13af2 Bug: tint:1418 Change-Id: I0e55e19cdb8e3931ab87a99bce0e16b0cf5d5bff Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/81320 Auto-Submit: Ben Clayton <bclayton@google.com> Reviewed-by: Antonio Maiorano <amaiorano@google.com> Reviewed-by: Ryan Harrison <rharrison@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com>
13 lines
458 B
WebGPU Shading Language
13 lines
458 B
WebGPU Shading Language
type 𝓉𝓎𝓅ℯ_𝒶 = i32;
|
||
type 𝐭𝐲𝐩𝐞_𝐛 = f32;
|
||
|
||
fn 𝓯𝓾𝓷𝓬𝓽𝓲𝓸𝓷(ᵖᵃʳᵃᵐ : 𝓉𝓎𝓅ℯ_𝒶) -> 𝐭𝐲𝐩𝐞_𝐛 {
|
||
return 𝐭𝐲𝐩𝐞_𝐛(ᵖᵃʳᵃᵐ);
|
||
}
|
||
|
||
@stage(fragment)
|
||
fn 𝕖𝕟𝕥𝕣𝕪𝕡𝕠𝕚𝕟𝕥() {
|
||
var 𝙫𝙖𝙧𝙞𝙖𝙗𝙡𝙚 : 𝓉𝓎𝓅ℯ_𝒶;
|
||
let 𝖗𝖊𝖘𝖚𝖑𝖙 = 𝓯𝓾𝓷𝓬𝓽𝓲𝓸𝓷(𝙫𝙖𝙧𝙞𝙖𝙗𝙡𝙚);
|
||
}
|