Basic hit detection

This commit is contained in:
2023-03-21 14:42:54 -07:00
parent d7538ec3d3
commit 0be34af8dc
20 changed files with 343 additions and 41 deletions

View File

@@ -49,7 +49,7 @@ void TextureRenderTarget::setSize(float_t width, float_t height) {
);
// Validate things went correct.
if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) {
if(glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) {
assertUnreachable();
}
}