1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:37:34 +00:00

LibSoftGPU: Clean up Material initial value style

This commit is contained in:
Jelle Raaijmakers 2022-03-23 11:09:05 +01:00 committed by Brian Gianforcaro
parent 284a629ab4
commit 23476dac64

View file

@ -17,8 +17,8 @@ struct Material {
FloatVector4 emissive { 0.0f, 0.0f, 0.0f, 1.0f };
float shininess { 0.0f };
float ambient_color_index { 0.0f };
float diffuse_color_index = { 1.0f };
float specular_color_index = { 1.0f };
float diffuse_color_index { 1.0f };
float specular_color_index { 1.0f };
};
}