diff options
author | 2020-05-21 19:50:53 +0200 | |
---|---|---|
committer | 2020-05-21 19:50:53 +0200 | |
commit | bbfb1c040c92e36b3d23a2167ad3432c819b9668 (patch) | |
tree | 7fd555e6735d341acd3e5f53e69e4892b26fd18e /glow/src/quad.rs | |
parent | 2798d4935e14a2453adc9e85c1037cac3b79a8c9 (diff) | |
download | iced-bbfb1c040c92e36b3d23a2167ad3432c819b9668.tar.gz iced-bbfb1c040c92e36b3d23a2167ad3432c819b9668.tar.bz2 iced-bbfb1c040c92e36b3d23a2167ad3432c819b9668.zip |
Update to latest `glow`
Diffstat (limited to 'glow/src/quad.rs')
-rw-r--r-- | glow/src/quad.rs | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/glow/src/quad.rs b/glow/src/quad.rs index 3a051268..c2fd08a2 100644 --- a/glow/src/quad.rs +++ b/glow/src/quad.rs @@ -31,13 +31,11 @@ impl Pipeline { unsafe { gl.use_program(Some(program)); - gl.uniform_matrix_4_f32_slice( - Some(0), - false, - &Transformation::identity().into(), - ); - gl.uniform_1_f32(Some(1), 1.0); - gl.uniform_1_f32(Some(2), 0.0); + let matrix: [f32; 16] = Transformation::identity().into(); + gl.uniform_matrix_4_f32_slice(Some(&0), false, &matrix); + + gl.uniform_1_f32(Some(&1), 1.0); + gl.uniform_1_f32(Some(&2), 0.0); gl.use_program(None); } @@ -80,11 +78,8 @@ impl Pipeline { if transformation != self.current_transform { unsafe { - gl.uniform_matrix_4_f32_slice( - Some(0), - false, - &transformation.into(), - ); + let matrix: [f32; 16] = transformation.into(); + gl.uniform_matrix_4_f32_slice(Some(&0), false, &matrix); self.current_transform = transformation; } @@ -92,7 +87,7 @@ impl Pipeline { if scale != self.current_scale { unsafe { - gl.uniform_1_f32(Some(1), scale); + gl.uniform_1_f32(Some(&1), scale); } self.current_scale = scale; @@ -100,7 +95,7 @@ impl Pipeline { if target_height != self.current_target_height { unsafe { - gl.uniform_1_f32(Some(2), target_height as f32); + gl.uniform_1_f32(Some(&2), target_height as f32); } self.current_target_height = target_height; |