-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathegui_render_texture.rs
231 lines (193 loc) · 6.05 KB
/
egui_render_texture.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
use notan::egui::{self, *};
use notan::math::{Mat4, Vec3};
use notan::prelude::*;
#[derive(AppState)]
struct State {
cube: Cube,
render_texture: RenderTexture,
sized_texture: SizedTexture,
}
impl State {
fn new(gfx: &mut Graphics) -> State {
let cube = Cube::new(gfx);
let render_texture = gfx
.create_render_texture(500, 400)
.with_depth()
.build()
.unwrap();
let sized_texture = gfx.egui_register_texture(&render_texture);
Self {
cube,
render_texture,
sized_texture,
}
}
}
#[notan_main]
fn main() -> Result<(), String> {
let win = WindowConfig::default()
.set_lazy_loop(true)
.set_vsync(true)
.set_high_dpi(true);
notan::init_with(State::new)
.add_config(win)
.add_config(EguiConfig)
.draw(draw)
.build()
}
fn draw(app: &mut App, gfx: &mut Graphics, plugins: &mut Plugins, state: &mut State) {
let cube_renderer = state.cube.create_renderer(gfx, app.timer.delta_f32());
gfx.render_to(&state.render_texture, &cube_renderer);
let mut output = plugins.egui(|ctx| {
egui::Window::new("Notan Render Texture").show(ctx, |ui| {
ui.image(state.sized_texture);
});
});
output.clear_color(Color::BLACK);
gfx.render(&output);
}
// - Cube Code
//language=glsl
const COLOR_VERTEX: ShaderSource = notan::vertex_shader! {
r#"
#version 450
layout(location = 0) in vec4 a_position;
layout(location = 1) in vec4 a_color;
layout(location = 0) out vec4 v_color;
layout(set = 0, binding = 0) uniform Locals {
mat4 u_matrix;
};
void main() {
v_color = a_color;
gl_Position = u_matrix * a_position;
}
"#
};
//language=glsl
const COLOR_FRAGMENT: ShaderSource = notan::fragment_shader! {
r#"
#version 450
precision mediump float;
layout(location = 0) in vec4 v_color;
layout(location = 0) out vec4 color;
void main() {
color = v_color;
}
"#
};
struct Cube {
pipeline: Pipeline,
vertex_buffer: Buffer,
index_buffer: Buffer,
uniform_buffer: Buffer,
mvp: notan::math::Mat4,
angle: f32,
}
impl Cube {
fn new(gfx: &mut Graphics) -> Self {
let vertex_info = VertexInfo::new()
.attr(0, VertexFormat::Float32x3)
.attr(1, VertexFormat::Float32x4);
let pipeline = gfx
.create_pipeline()
.from(&COLOR_VERTEX, &COLOR_FRAGMENT)
.with_vertex_info(&vertex_info)
.with_depth_stencil(DepthStencil {
write: true,
compare: CompareMode::Less,
})
.build()
.unwrap();
#[rustfmt::skip]
let vertices = [
-1.0, -1.0, -1.0, 1.0, 0.0, 0.0, 1.0,
1.0, -1.0, -1.0, 1.0, 0.0, 0.0, 1.0,
1.0, 1.0, -1.0, 1.0, 0.0, 0.0, 1.0,
-1.0, 1.0, -1.0, 1.0, 0.0, 0.0, 1.0,
-1.0, -1.0, 1.0, 0.0, 1.0, 0.0, 1.0,
1.0, -1.0, 1.0, 0.0, 1.0, 0.0, 1.0,
1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0,
-1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0,
-1.0, -1.0, -1.0, 0.0, 0.0, 1.0, 1.0,
-1.0, 1.0, -1.0, 0.0, 0.0, 1.0, 1.0,
-1.0, 1.0, 1.0, 0.0, 0.0, 1.0, 1.0,
-1.0, -1.0, 1.0, 0.0, 0.0, 1.0, 1.0,
1.0, -1.0, -1.0, 1.0, 0.5, 0.0, 1.0,
1.0, 1.0, -1.0, 1.0, 0.5, 0.0, 1.0,
1.0, 1.0, 1.0, 1.0, 0.5, 0.0, 1.0,
1.0, -1.0, 1.0, 1.0, 0.5, 0.0, 1.0,
-1.0, -1.0, -1.0, 0.0, 0.5, 1.0, 1.0,
-1.0, -1.0, 1.0, 0.0, 0.5, 1.0, 1.0,
1.0, -1.0, 1.0, 0.0, 0.5, 1.0, 1.0,
1.0, -1.0, -1.0, 0.0, 0.5, 1.0, 1.0,
-1.0, 1.0, -1.0, 1.0, 0.0, 0.5, 1.0,
-1.0, 1.0, 1.0, 1.0, 0.0, 0.5, 1.0,
1.0, 1.0, 1.0, 1.0, 0.0, 0.5, 1.0,
1.0, 1.0, -1.0, 1.0, 0.0, 0.5, 1.0,
];
#[rustfmt::skip]
let indices = [
0, 1, 2, 0, 2, 3,
6, 5, 4, 7, 6, 4,
8, 9, 10, 8, 10, 11,
14, 13, 12, 15, 14, 12,
16, 17, 18, 16, 18, 19,
22, 21, 20, 23, 22, 20
];
let projection = Mat4::perspective_rh_gl(45.0, 4.0 / 3.0, 0.1, 100.0);
let view = Mat4::look_at_rh(
Vec3::new(4.0, 3.0, 3.0),
Vec3::new(0.0, 0.0, 0.0),
Vec3::new(0.0, 1.0, 0.0),
);
let mvp = Mat4::IDENTITY * projection * view;
let vertex_buffer = gfx
.create_vertex_buffer()
.with_info(&vertex_info)
.with_data(&vertices)
.build()
.unwrap();
let index_buffer = gfx
.create_index_buffer()
.with_data(&indices)
.build()
.unwrap();
let uniform_buffer = gfx
.create_uniform_buffer(0, "Locals")
.with_data(&mvp)
.build()
.unwrap();
Self {
pipeline,
vertex_buffer,
index_buffer,
uniform_buffer,
mvp,
angle: 0.0,
}
}
fn create_renderer(&mut self, gfx: &mut Graphics, delta: f32) -> Renderer {
gfx.set_buffer_data(&self.uniform_buffer, &rotated_matrix(self.mvp, self.angle));
let mut renderer = gfx.create_renderer();
renderer.begin(Some(ClearOptions {
color: Some(Color::new(0.1, 0.2, 0.3, 1.0)),
depth: Some(1.0),
..Default::default()
}));
renderer.set_pipeline(&self.pipeline);
renderer.bind_buffers(&[
&self.vertex_buffer,
&self.index_buffer,
&self.uniform_buffer,
]);
renderer.draw(0, 36);
renderer.end();
self.angle += 0.6 * delta;
renderer
}
}
fn rotated_matrix(base: Mat4, angle: f32) -> Mat4 {
let rot_x = Mat4::from_rotation_x(angle);
let rot_y = Mat4::from_rotation_y(angle);
base * rot_x * rot_y
}