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
|
use crate::opengl::currently_bound::CurrentlyBound;
use crate::vector::Vec2;
#[derive(Debug)]
pub struct Texture
{
texture: gl::types::GLuint,
}
impl Texture
{
pub fn new() -> Self
{
let mut texture = gl::types::GLuint::default();
unsafe {
gl::GenTextures(1, &mut texture);
};
Self { texture }
}
pub fn bind(&self, cb: impl FnOnce(CurrentlyBound<'_, Self>))
{
unsafe {
gl::BindTexture(gl::TEXTURE_2D, self.texture);
}
// SAFETY: The buffer object is bound above
let currently_bound = unsafe { CurrentlyBound::new() };
cb(currently_bound);
}
pub fn generate(
_: &CurrentlyBound<Self>,
dimens: &Vec2<u32>,
data: &[u8],
pixel_data_format: PixelDataFormat,
)
{
#[allow(clippy::cast_possible_wrap)]
unsafe {
gl::TexImage2D(
gl::TEXTURE_2D,
0,
pixel_data_format.to_gl() as i32,
dimens.x as i32,
dimens.y as i32,
0,
pixel_data_format.to_gl(),
gl::UNSIGNED_BYTE,
data.as_ptr().cast(),
);
gl::GenerateMipmap(gl::TEXTURE_2D);
}
}
pub fn set_wrap(_: CurrentlyBound<Self>, wrapping: Wrapping)
{
let wrapping_gl = wrapping.to_gl();
#[allow(clippy::cast_possible_wrap)]
unsafe {
gl::TexParameteri(gl::TEXTURE_2D, gl::TEXTURE_WRAP_S, wrapping_gl as i32);
gl::TexParameteri(gl::TEXTURE_2D, gl::TEXTURE_WRAP_T, wrapping_gl as i32);
}
}
pub fn set_magnifying_filter(_: CurrentlyBound<Self>, filtering: Filtering)
{
let filtering_gl = filtering.to_gl();
#[allow(clippy::cast_possible_wrap)]
unsafe {
gl::TexParameteri(
gl::TEXTURE_2D,
gl::TEXTURE_MAG_FILTER,
filtering_gl as i32,
);
}
}
pub fn set_minifying_filter(_: CurrentlyBound<Self>, filtering: Filtering)
{
let filtering_gl = filtering.to_gl();
#[allow(clippy::cast_possible_wrap)]
unsafe {
gl::TexParameteri(
gl::TEXTURE_2D,
gl::TEXTURE_MIN_FILTER,
filtering_gl as i32,
);
}
}
}
impl Drop for Texture
{
fn drop(&mut self)
{
unsafe {
gl::DeleteTextures(1, &self.texture);
}
}
}
/// Texture wrapping.
#[derive(Debug, Clone, Copy)]
pub enum Wrapping
{
Repeat,
MirroredRepeat,
ClampToEdge,
ClampToBorder,
}
impl Wrapping
{
fn to_gl(self) -> gl::types::GLenum
{
match self {
Self::Repeat => gl::REPEAT,
Self::MirroredRepeat => gl::MIRRORED_REPEAT,
Self::ClampToEdge => gl::CLAMP_TO_EDGE,
Self::ClampToBorder => gl::CLAMP_TO_BORDER,
}
}
}
#[derive(Debug, Clone, Copy)]
pub enum Filtering
{
Nearest,
Linear,
}
impl Filtering
{
fn to_gl(self) -> gl::types::GLenum
{
match self {
Self::Linear => gl::LINEAR,
Self::Nearest => gl::NEAREST,
}
}
}
/// Texture pixel data format.
#[derive(Debug, Clone, Copy)]
pub enum PixelDataFormat
{
Rgb,
Rgba,
}
impl PixelDataFormat
{
fn to_gl(self) -> gl::types::GLenum
{
match self {
Self::Rgb => gl::RGB,
Self::Rgba => gl::RGBA,
}
}
}
|