mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2024-11-10 12:34:11 +01:00
b7c8604898
- Expose light in the shader api - flw_light - for builtin smooth lighting, faster than can be implemented by materials alone - flw_lightFetch - for materials that want to go crazy, access to raw data
21 lines
557 B
GLSL
21 lines
557 B
GLSL
#include "flywheel:api/material.glsl"
|
|
#include "flywheel:api/common.glsl"
|
|
|
|
vec4 flw_vertexPos;
|
|
vec4 flw_vertexColor;
|
|
vec2 flw_vertexTexCoord;
|
|
ivec2 flw_vertexOverlay;
|
|
vec2 flw_vertexLight;
|
|
vec3 flw_vertexNormal;
|
|
|
|
/*const*/ FlwMaterial flw_material;
|
|
|
|
// To be implemented by the instance shader.
|
|
void flw_instanceVertex(FlwInstance i);
|
|
|
|
// To be implemented by the instance cull shader.
|
|
void flw_transformBoundingSphere(in FlwInstance i, inout vec3 center, inout float radius);
|
|
|
|
// To be implemented by the material vertex shader.
|
|
void flw_materialVertex();
|