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
|
/*
* Copyright (C) Oscar Shrimpton 2020
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
use crate::draw::texture::TextureStore;
use arrayvec::ArrayVec;
use hal::prelude::*;
use hal::pso::ShaderStageFlags;
use super::UIPoint;
use crate::draw::draw_buffers::DrawBuffers;
use crate::types::*;
use crate::UIState;
use std::convert::TryInto;
use stockton_types::Vector2;
pub fn do_render(
cmd_buffer: &mut CommandBuffer,
pipeline_layout: &PipelineLayout,
draw_buffers: &mut DrawBuffers<UIPoint>,
texture_store: &mut TextureStore,
ui: &mut UIState,
) {
// TODO: Actual UI Rendering
let (_out, paint) = ui.end_frame();
let screen = ui.dimensions();
unsafe {
cmd_buffer.push_graphics_constants(
&pipeline_layout,
ShaderStageFlags::VERTEX,
0,
&[screen.x.to_bits(), screen.y.to_bits()],
);
}
for (_rect, tris) in paint.iter() {
// Copy triangles/indicies
for i in (0..tris.indices.len()).step_by(3) {
draw_buffers.index_buffer[i / 3] = (
tris.indices[i].try_into().unwrap(),
tris.indices[i + 1].try_into().unwrap(),
tris.indices[i + 2].try_into().unwrap(),
);
}
for (i, vertex) in tris.vertices.iter().enumerate() {
draw_buffers.vertex_buffer[i] = UIPoint(
Vector2::new(vertex.pos.x, vertex.pos.y),
Vector2::new(vertex.uv.x, vertex.uv.y),
vertex.color,
);
}
// TODO: *Properly* deal with textures
let mut descriptor_sets: ArrayVec<[_; 1]> = ArrayVec::new();
descriptor_sets.push(texture_store.get_chunk_descriptor_set(0));
unsafe {
cmd_buffer.bind_graphics_descriptor_sets(pipeline_layout, 0, descriptor_sets, &[]);
// Call draw
cmd_buffer.draw_indexed(0..tris.indices.len() as u32, 0, 0..1);
}
}
}
|