Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
26 lines
324 B
GLSL
26 lines
324 B
GLSL
|
|
/**
|
|
* A material
|
|
*/
|
|
struct Material {
|
|
/**
|
|
* The diffuse sampler
|
|
*/
|
|
sampler2D diffuse;
|
|
|
|
/**
|
|
* The diffuse sampler
|
|
*/
|
|
sampler2D specular;
|
|
|
|
/**
|
|
* The shininess value
|
|
*/
|
|
float shininess;
|
|
|
|
/**
|
|
* The reflectivity value
|
|
*/
|
|
float reflectivity;
|
|
};
|