diff options
author | Stephan Unverwerth <s.unverwerth@serenityos.org> | 2022-03-15 01:11:58 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-04-06 11:32:24 +0200 |
commit | 24d420312c6a8a2d1488b54c712e625a1d6b02e2 (patch) | |
tree | a3a163a8bbce647b37f5d1f590975f0ebdc08d6f /Userland/Libraries/LibSoftGPU/Image.h | |
parent | ac033dd9b60bc384bc7e20ecc9f7a4b6a623d1d3 (diff) | |
download | serenity-24d420312c6a8a2d1488b54c712e625a1d6b02e2.zip |
LibGL+LibGPU+LibSoftGPU: Move Enums.h to LibGPU
Diffstat (limited to 'Userland/Libraries/LibSoftGPU/Image.h')
-rw-r--r-- | Userland/Libraries/LibSoftGPU/Image.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Libraries/LibSoftGPU/Image.h b/Userland/Libraries/LibSoftGPU/Image.h index b7a4a16a80..8c31007d06 100644 --- a/Userland/Libraries/LibSoftGPU/Image.h +++ b/Userland/Libraries/LibSoftGPU/Image.h @@ -10,10 +10,11 @@ #include <AK/FixedArray.h> #include <AK/RefCounted.h> #include <AK/RefPtr.h> +#include <LibGPU/Enums.h> #include <LibGfx/Vector3.h> #include <LibGfx/Vector4.h> #include <LibSoftGPU/Buffer/Typed3DBuffer.h> -#include <LibSoftGPU/Enums.h> +#include <LibSoftGPU/Config.h> #include <LibSoftGPU/ImageDataLayout.h> #include <LibSoftGPU/ImageFormat.h> |