|
@@ -11,11 +11,11 @@
|
|
|
#include "Texture.h"
|
|
|
|
|
|
#include <AK/Array.h>
|
|
|
+#include <AK/IntegralMath.h>
|
|
|
#include <LibGL/GL/gl.h>
|
|
|
#include <LibGL/Tex/MipMap.h>
|
|
|
#include <LibGL/Tex/Sampler2D.h>
|
|
|
#include <LibGPU/ImageDataLayout.h>
|
|
|
-#include <LibGfx/Vector3.h>
|
|
|
|
|
|
namespace GL {
|
|
|
|
|
@@ -23,7 +23,7 @@ class Texture2D final : public Texture {
|
|
|
public:
|
|
|
// FIXME: These shouldn't really belong here, they're context specific.
|
|
|
static constexpr u16 MAX_TEXTURE_SIZE = 2048;
|
|
|
- static constexpr u8 LOG2_MAX_TEXTURE_SIZE = 11;
|
|
|
+ static constexpr u8 LOG2_MAX_TEXTURE_SIZE = AK::log2(MAX_TEXTURE_SIZE);
|
|
|
|
|
|
virtual bool is_texture_2d() const override { return true; }
|
|
|
|