square: Fix indices
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 8m11s
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 8m11s
This commit is contained in:
parent
05532756cf
commit
8b16def890
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ const VERTICES: [Vertex2D; 4] = [
|
|||
},
|
||||
];
|
||||
|
||||
const INDICES: [u32; 6] = [0, 1, 2, 2, 1, 3];
|
||||
const INDICES: [u32; 6] = [0, 2, 1, 2, 3, 1];
|
||||
|
||||
pub mod shaders {
|
||||
pub mod vs {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue