mirror of
https://github.com/sotrh/learn-wgpu.git
synced 2024-11-16 06:12:55 +00:00
Merge pull request #132 from paq/patch-1
Fix syntax error in tutorial 6
This commit is contained in:
commit
7bde566bb9
@ -94,7 +94,7 @@ Up to this point we've used `Buffer`s to store our vertex and index data, and ev
|
|||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
// This is so we can store this in a buffer
|
// This is so we can store this in a buffer
|
||||||
#[derive(Debug, Copy, Clone, bytemuck::Pod, bytemuck::Zeroable)]
|
#[derive(Debug, Copy, Clone, bytemuck::Pod, bytemuck::Zeroable)]
|
||||||
struct Uniforms
|
struct Uniforms {
|
||||||
// We can't use cgmath with bytemuck directly so we'll have
|
// We can't use cgmath with bytemuck directly so we'll have
|
||||||
// to convert the Matrix4 into a 4x4 f32 array
|
// to convert the Matrix4 into a 4x4 f32 array
|
||||||
view_proj: [[f32; 4]; 4],
|
view_proj: [[f32; 4]; 4],
|
||||||
|
Loading…
Reference in New Issue
Block a user