summaryrefslogtreecommitdiff
path: root/engine/src/opengl
diff options
context:
space:
mode:
Diffstat (limited to 'engine/src/opengl')
-rw-r--r--engine/src/opengl/shader.rs11
1 files changed, 2 insertions, 9 deletions
diff --git a/engine/src/opengl/shader.rs b/engine/src/opengl/shader.rs
index 224a9bc..2312adc 100644
--- a/engine/src/opengl/shader.rs
+++ b/engine/src/opengl/shader.rs
@@ -3,6 +3,7 @@ use std::ptr::null_mut;
use crate::matrix::Matrix;
use crate::opengl::currently_bound::CurrentlyBound;
+use crate::shader::Kind;
use crate::vector::Vec3;
#[derive(Debug)]
@@ -90,14 +91,6 @@ impl Drop for Shader
}
}
-/// Shader kind.
-#[derive(Debug, Clone, Copy)]
-pub enum Kind
-{
- Vertex,
- Fragment,
-}
-
impl Kind
{
fn into_gl(self) -> gl::types::GLenum
@@ -110,7 +103,7 @@ impl Kind
}
/// Shader program
-#[derive(Debug)]
+#[derive(Debug, PartialEq, Eq, Hash)]
pub struct Program
{
program: gl::types::GLuint,