1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:37:35 +00:00

LibGL+LibSoftGPU: Add GL_MAX_LIGHTS to get_context_parameter

This is required to allow lighting to work properly in the GL. We
currently have the maximum number of lights in the software GL context
set to 8, as this is the minimum that OpenGL mandates according to the
spec.
This commit is contained in:
Jesse Buhagiar 2022-01-07 22:32:32 +11:00 committed by Linus Groh
parent 9ec2b379a4
commit 192befa84b
5 changed files with 7 additions and 1 deletions

View file

@ -476,7 +476,8 @@ DeviceInfo Device::info() const
return {
.vendor_name = "SerenityOS",
.device_name = "SoftGPU",
.num_texture_units = NUM_SAMPLERS
.num_texture_units = NUM_SAMPLERS,
.num_lights = NUM_LIGHTS
};
}