summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGPU
diff options
context:
space:
mode:
authorJelle Raaijmakers <jelle@gmta.nl>2022-09-09 14:41:07 +0200
committerLinus Groh <mail@linusgroh.de>2022-09-11 22:37:07 +0100
commit1aa1c89afa99cdd6c0906c2240c851dacb6ba223 (patch)
treebac02a0a35954073fc86a3abbd69747d1276df50 /Userland/Libraries/LibGPU
parent087f5657001047527d34de148626366835eab814 (diff)
downloadserenity-1aa1c89afa99cdd6c0906c2240c851dacb6ba223.zip
LibGL+LibGPU+LibSoftGPU: Report texture clamp to edge support
Diffstat (limited to 'Userland/Libraries/LibGPU')
-rw-r--r--Userland/Libraries/LibGPU/DeviceInfo.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGPU/DeviceInfo.h b/Userland/Libraries/LibGPU/DeviceInfo.h
index 6e39a0001e..36bb2a552b 100644
--- a/Userland/Libraries/LibGPU/DeviceInfo.h
+++ b/Userland/Libraries/LibGPU/DeviceInfo.h
@@ -19,6 +19,7 @@ struct DeviceInfo final {
float max_texture_lod_bias;
u8 stencil_bits;
bool supports_npot_textures;
+ bool supports_texture_clamp_to_edge;
bool supports_texture_env_add;
};