diff --git a/CMakeLists.txt b/CMakeLists.txt index c5725ff0..b6ac1143 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,6 +38,7 @@ include_directories(third_party/result/include) include_directories(third_party/xxhash/include) include_directories(third_party/httplib) include_directories(third_party/stb) +include_directories(third_party/opengl) add_compile_definitions(NOMINMAX) # Make windows.h not define min/max macros because third-party deps don't like it add_compile_definitions(WIN32_LEAN_AND_MEAN) # Make windows.h not include literally everything @@ -183,7 +184,8 @@ set(RENDERER_GL_SOURCE_FILES "") # Empty by default unless we are compiling with set(RENDERER_VK_SOURCE_FILES "") # Empty by default unless we are compiling with the VK renderer if(ENABLE_OPENGL) - set(RENDERER_GL_INCLUDE_FILES include/renderer_gl/opengl.hpp + # This may look weird but opengl.hpp is our header even if it's in the third_party folder + set(RENDERER_GL_INCLUDE_FILES third_party/opengl/opengl.hpp include/renderer_gl/renderer_gl.hpp include/renderer_gl/textures.hpp include/renderer_gl/surfaces.hpp include/renderer_gl/surface_cache.hpp include/renderer_gl/gl_state.hpp diff --git a/include/renderer_gl/opengl.hpp b/third_party/opengl/opengl.hpp similarity index 90% rename from include/renderer_gl/opengl.hpp rename to third_party/opengl/opengl.hpp index a2afab40..f368f573 100644 --- a/include/renderer_gl/opengl.hpp +++ b/third_party/opengl/opengl.hpp @@ -615,4 +615,82 @@ namespace OpenGL { glBlendFuncSeparate(fac1, fac2, fac3, fac4); } -} // end namespace OpenGL + // Abstraction for GLSL vectors + template + class Vector { + // A GLSL vector can only have 2, 3 or 4 elements + static_assert(size == 2 || size == 3 || size == 4); + T m_storage[size]; + + public: + T& r() { return m_storage[0]; } + T& g() { return m_storage[1]; } + T& b() { + static_assert(size >= 3, "Out of bounds OpenGL::Vector access"); + return m_storage[2]; + } + T& a() { + static_assert(size >= 4, "Out of bounds OpenGL::Vector access"); + return m_storage[3]; + } + + T& x() { return r(); } + T& y() { return g(); } + T& z() { return b(); } + T& w() { return a(); } + T& operator[](size_t index) { return m_storage[index]; } + const T& operator[](size_t index) const { return m_storage[index]; } + + T& u() { return r(); } + T& v() { return g(); } + + T& s() { return r(); } + T& t() { return g(); } + T& p() { return b(); } + T& q() { return a(); } + + Vector(std::array list) { std::copy(list.begin(), list.end(), &m_storage[0]); } + + Vector() {} + }; + + using vec2 = Vector; + using vec3 = Vector; + using vec4 = Vector; + + using dvec2 = Vector; + using dvec3 = Vector; + using dvec4 = Vector; + + using ivec2 = Vector; + using ivec3 = Vector; + using ivec4 = Vector; + + using uvec2 = Vector; + using uvec3 = Vector; + using uvec4 = Vector; + + // A 2D rectangle, meant to be used for stuff like scissor rects or viewport rects + // We're never supporting 3D rectangles, because rectangles were never meant to be 3D in the first place + // x, y: Coords of the top left vertex + // width, height: Dimensions of the rectangle. Initialized to 0 if not specified. + template + struct Rectangle { + T x, y, width, height; + + std::pair topLeft() const { return std::make_pair(x, y); } + std::pair topRight() const { return std::make_pair(x + width, y); } + std::pair bottomLeft() const { return std::make_pair(x, y + height); } + std::pair bottomRight() const { return std::make_pair(x + width, y + height); } + + Rectangle() : x(0), y(0), width(0), height(0) {} + Rectangle(T x, T y, T width, T height) : x(x), y(y), width(width), height(height) {} + + bool isEmpty() const { return width == 0 && height == 0; } + + void setEmpty() { x = y = width = height = 0; } + }; + + using Rect = Rectangle; + +} // end namespace OpenGL \ No newline at end of file