#pragma once #include "GL/glew.h" namespace zgl { struct shader_handle { constexpr bool operator==(const shader_handle&) const = default; GLuint shader_id{ 0 }; }; }