1 #ifndef BLANK_GRAPHICS_CANVAS_HPP_
2 #define BLANK_GRAPHICS_CANVAS_HPP_
14 void Resize(float w, float h) noexcept;
16 const glm::vec2 &Offset() const noexcept { return offset; }
17 const glm::vec2 &Size() const noexcept { return size; }
19 const glm::mat4 &Projection() const noexcept { return projection; }
20 const glm::mat4 &View() const noexcept { return view; }
23 void UpdateProjection() noexcept;