mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
Co-authored-by: Andreas Reich <r_andreas2@web.de> Co-authored-by: Magnus <85136135+SupaMaggie70Incorporated@users.noreply.github.com>
15 lines
192 B
Plaintext
15 lines
192 B
Plaintext
// language: metal2.3
|
|
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
|
|
using metal::uint;
|
|
|
|
|
|
struct main_Input {
|
|
};
|
|
fragment void main_(
|
|
uint view_index [[amplification_id]]
|
|
) {
|
|
return;
|
|
}
|