LibGL+LibSoftGPU: Remove unused variable specular_exponent

This was a duplicate of the `Material::shininess` variable.
This commit is contained in:
Jesse Buhagiar 2022-01-15 15:40:03 +11:00 committed by Idan Horowitz
parent 5a735602b0
commit 5bb8c14c8f
Notes: sideshowbarker 2024-07-17 20:42:00 +09:00
2 changed files with 0 additions and 2 deletions

View File

@ -3104,7 +3104,6 @@ void SoftwareGLContext::sync_light_state()
material.specular = current_material_state.specular;
material.emissive = current_material_state.emissive;
material.shininess = current_material_state.shininess;
material.specular_exponent = current_material_state.specular_exponent;
material.ambient_color_index = current_material_state.ambient_color_index;
material.diffuse_color_index = current_material_state.diffuse_color_index;
material.specular_color_index = current_material_state.specular_color_index;

View File

@ -16,7 +16,6 @@ struct Material {
FloatVector4 specular { 0.0f, 0.0f, 0.0f, 1.0f };
FloatVector4 emissive { 0.0f, 0.0f, 0.0f, 1.0f };
float shininess { 0.0f };
float specular_exponent { 0.0f };
float ambient_color_index { 0.0f };
float diffuse_color_index = { 1.0f };
float specular_color_index = { 1.0f };