1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 18:10:56 +09:00

LibGL+LibGPU+LibSoftGPU: Report texture env add extension

The Quake 3 port makes use of this extension to determine a more
efficient multitexturing strategy. Since LibSoftGPU supports it, let's
report the extension in LibGL. :^)
This commit is contained in:
Jelle Raaijmakers 2022-08-29 00:10:04 +02:00 committed by Linus Groh
parent adf85c719a
commit 94f016b363
Notes: sideshowbarker 2024-07-17 07:38:56 +09:00
3 changed files with 7 additions and 0 deletions

View file

@ -835,6 +835,7 @@ GPU::DeviceInfo Device::info() const
.max_clip_planes = MAX_CLIP_PLANES,
.stencil_bits = sizeof(GPU::StencilType) * 8,
.supports_npot_textures = true,
.supports_texture_env_add = true,
};
}