summaryrefslogtreecommitdiff
path: root/engine/src/opengl/mod.rs
blob: edf6372c52a176f637a377aabee1c18e48133069 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
use bitflags::bitflags;

use crate::data_types::dimens::Dimens;
use crate::vector::Vec2;

pub mod buffer;
pub mod shader;
pub mod texture;
pub mod vertex_array;

mod util;

#[cfg(feature = "debug")]
pub mod debug;

pub fn set_viewport(position: &Vec2<u32>, size: Dimens<u32>)
{
    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());
    }
}

pub fn enable(capacity: Capability)
{
    unsafe {
        gl::Enable(capacity as u32);
    }
}

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

#[derive(Debug)]
#[repr(u32)]
pub enum Capability
{
    DepthTest = gl::DEPTH_TEST,
}