From 7284d44833c38780751eceb0aa7f4a5dda7fc1ba Mon Sep 17 00:00:00 2001 From: AzaezelX Date: Tue, 10 Jan 2023 17:44:17 -0600 Subject: [PATCH] bump up max allowable texture dimensions --- Engine/source/gfx/bitmap/gBitmap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Engine/source/gfx/bitmap/gBitmap.h b/Engine/source/gfx/bitmap/gBitmap.h index dbae0f876..d608da146 100644 --- a/Engine/source/gfx/bitmap/gBitmap.h +++ b/Engine/source/gfx/bitmap/gBitmap.h @@ -58,8 +58,8 @@ public: enum Constants { /// The maximum mipmap levels we support. The current - /// value lets us support up to 4096 x 4096 images. - c_maxMipLevels = 13 + /// value lets us support up to 8192 x 8192 images. + c_maxMipLevels = 14 }; enum TextureOp