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

LibGL+LibGPU+LibSoftGPU: Move Light.h to LibGPU

This commit is contained in:
Stephan Unverwerth 2022-03-27 15:02:20 +02:00 committed by Andreas Kling
parent e7450fa940
commit 7da9447619
4 changed files with 7 additions and 7 deletions

View file

@ -1236,7 +1236,7 @@ void Device::set_sampler_config(unsigned sampler, GPU::SamplerConfig const& conf
m_samplers[sampler].set_config(config);
}
void Device::set_light_state(unsigned int light_id, Light const& light)
void Device::set_light_state(unsigned int light_id, GPU::Light const& light)
{
m_lights.at(light_id) = light;
}