From 547a5e85a8886aa891b6fba173c2c2ebc9404ca0 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Mon, 20 Feb 2023 14:36:25 -0600 Subject: [PATCH] feat(gx): implement getter for depth bits on GLMipmap --- src/gx/gll/GLMipmap.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gx/gll/GLMipmap.cpp b/src/gx/gll/GLMipmap.cpp index 7758a26..a87ba94 100644 --- a/src/gx/gll/GLMipmap.cpp +++ b/src/gx/gll/GLMipmap.cpp @@ -4,8 +4,7 @@ #include "gx/gll/GLFramebuffer.h" int32_t GLMipmap::GetDepthBits() { - // TODO - return 0; + return this->m_DepthBits; } void GLMipmap::Attach(GLFramebuffer* framebuffer, GLenum attachPoint, int32_t a4) {