fixes
This commit is contained in:
13
include/opengl/handles/shader_handle.hpp
Normal file
13
include/opengl/handles/shader_handle.hpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include "GL/glew.h"
|
||||
|
||||
namespace zgl
|
||||
{
|
||||
struct shader_handle
|
||||
{
|
||||
constexpr bool operator==(const shader_handle&) const = default;
|
||||
|
||||
GLuint shader_id{ 0 };
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user