blob: ce375f55dcacacac9abfd73b1b261c87dda4affd (
plain)
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
|
use bitflags::bitflags;
use glfw::WindowSize;
use crate::vector::Vec2;
pub mod currently_bound;
pub mod shader;
pub mod vertex_array;
pub mod vertex_buffer;
mod util;
#[cfg(feature = "debug")]
pub mod debug;
pub fn set_viewport(position: &Vec2<u32>, size: &WindowSize)
{
unsafe {
#[allow(clippy::cast_possible_wrap)]
gl::Viewport(
position.x as i32,
position.y as i32,
size.width as i32,
size.height as i32,
);
}
}
pub fn clear_buffers(mask: BufferClearMask)
{
unsafe {
gl::Clear(mask.bits());
}
}
bitflags! {
#[derive(Debug, Clone, Copy)]
pub struct BufferClearMask: u32 {
const COLOR = gl::COLOR_BUFFER_BIT;
const DEPTH = gl::DEPTH_BUFFER_BIT;
const STENCIL = gl::STENCIL_BUFFER_BIT;
}
}
|