summaryrefslogtreecommitdiff
path: root/engine/src/opengl/mod.rs
blob: a58e72eee9047daf7b5b7c42442dbb8c25c5b6e7 (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
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;

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;
    }
}