-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathrenderer_instancing.rs
110 lines (91 loc) · 2.48 KB
/
renderer_instancing.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
use notan::prelude::*;
// Number of triangles to draw
const INSTANCES: usize = 1000;
//language=glsl
const VERT: ShaderSource = notan::vertex_shader! {
r#"
#version 450
layout(location = 0) in vec2 a_pos;
layout(location = 0) out vec3 v_color;
layout(set = 0, binding = 0) uniform Locals {
float count;
};
void main() {
// Values to change position and color
float n = gl_InstanceIndex * 0.1;
float j = gl_VertexIndex * 0.2;
vec2 pos = a_pos - vec2(sin(n + count), cos(n + count)) * fract(n) * 0.9;
v_color = vec3(fract(n - j), 1.0 - fract(n), fract(n + j));
gl_Position = vec4(pos, 0.0, 1.0);
}
"#
};
//language=glsl
const FRAG: ShaderSource = notan::fragment_shader! {
r#"
#version 450
precision mediump float;
layout(location = 0) in vec3 v_color;
layout(location = 0) out vec4 color;
void main() {
color = vec4(v_color, 1.0);
}
"#
};
#[derive(AppState)]
struct State {
pipeline: Pipeline,
vbo: Buffer,
ubo: Buffer,
count: f32,
}
#[notan_main]
fn main() -> Result<(), String> {
notan::init_with(setup).draw(draw).build()
}
fn setup(gfx: &mut Graphics) -> State {
let vertex_info = VertexInfo::new().attr(0, VertexFormat::Float32x2);
let pipeline = gfx
.create_pipeline()
.from(&VERT, &FRAG)
.with_vertex_info(&vertex_info)
.build()
.unwrap();
#[rustfmt::skip]
let pos = [
-0.2, -0.2,
0.2, -0.2,
0.0, 0.2
];
let vbo = gfx
.create_vertex_buffer()
.with_info(&vertex_info)
.with_data(&pos)
.build()
.unwrap();
let ubo = gfx
.create_uniform_buffer(0, "Locals")
.with_data(&[0.0])
.build()
.unwrap();
State {
pipeline,
vbo,
ubo,
count: 0.0,
}
}
fn draw(app: &mut App, gfx: &mut Graphics, state: &mut State) {
// Renderer pass as usual but instead of .draw uses .draw_instanced
let mut renderer = gfx.create_renderer();
renderer.begin(Some(ClearOptions::color(Color::BLACK)));
renderer.set_pipeline(&state.pipeline);
renderer.bind_buffers(&[&state.vbo, &state.ubo]);
renderer.draw_instanced(0, 3, INSTANCES as _);
renderer.end();
// Render to the screen
gfx.render(&renderer);
// Update the uniform to animate the triangles
state.count += 0.05 * app.timer.delta_f32();
gfx.set_buffer_data(&state.ubo, &[state.count]);
}