1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 21:08:12 +00:00

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

This commit is contained in:
Stephan Unverwerth 2022-03-27 15:07:53 +02:00 committed by Andreas Kling
parent 7da9447619
commit b652db1f54
5 changed files with 8 additions and 8 deletions

View file

@ -1241,7 +1241,7 @@ void Device::set_light_state(unsigned int light_id, GPU::Light const& light)
m_lights.at(light_id) = light;
}
void Device::set_material_state(GPU::Face face, Material const& material)
void Device::set_material_state(GPU::Face face, GPU::Material const& material)
{
m_materials[face] = material;
}