mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
[rs] Merge #624
624: Remove implicit conversion hello-triangle shader.vert r=kvark a=Napokue Remove implicit conversion to float, and change it to explicit conversion. Reason for this change is to prepare the hello-triangle example for Naga glsl-spirv path. Co-authored-by: Timo de Kort <dekort.timo@gmail.com>
This commit is contained in:
@@ -5,6 +5,7 @@ out gl_PerVertex {
|
||||
};
|
||||
|
||||
void main() {
|
||||
vec2 position = vec2(gl_VertexIndex, (gl_VertexIndex & 1) * 2) - 1;
|
||||
gl_Position = vec4(position, 0.0, 1.0);
|
||||
float x = float(gl_VertexIndex - 1);
|
||||
float y = float(((gl_VertexIndex & 1) * 2) - 1);
|
||||
gl_Position = vec4(x, y, 0.0, 1.0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user