summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGPU
diff options
context:
space:
mode:
authorJesse Buhagiar <jooster669@gmail.com>2022-03-09 21:27:50 +1100
committerAndreas Kling <kling@serenityos.org>2022-04-09 11:40:33 +0200
commitc9f44c746a13389ed57881ffcbc22e03b98017eb (patch)
tree7cc190e8013f3b8058fe9063f15efca7294fe7e6 /Userland/Libraries/LibGPU
parente34f199997ada006f78ca2d419113610d608f5b9 (diff)
downloadserenity-c9f44c746a13389ed57881ffcbc22e03b98017eb.zip
LibGL+LibSoftGPU: Add `GL_ADD` Texture Environment
Diffstat (limited to 'Userland/Libraries/LibGPU')
-rw-r--r--Userland/Libraries/LibGPU/SamplerConfig.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGPU/SamplerConfig.h b/Userland/Libraries/LibGPU/SamplerConfig.h
index 42ccdd2c76..a4b5b140d6 100644
--- a/Userland/Libraries/LibGPU/SamplerConfig.h
+++ b/Userland/Libraries/LibGPU/SamplerConfig.h
@@ -34,6 +34,7 @@ enum class TextureEnvMode {
Modulate,
Replace,
Decal,
+ Add,
};
struct SamplerConfig final {