diff options
Diffstat (limited to 'src/example/04_bloom/preprocess.c')
-rw-r--r-- | src/example/04_bloom/preprocess.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/example/04_bloom/preprocess.c b/src/example/04_bloom/preprocess.c index def9fd8..d7d4b21 100644 --- a/src/example/04_bloom/preprocess.c +++ b/src/example/04_bloom/preprocess.c @@ -7,7 +7,7 @@ static void vert(UniformCollection* uniforms, VertexShaderIn* in, Vec4* clipcoord) { static Vec4 p; p.xyz = in->vertex->position; p.w = 1; - mat4_mulvec4(uniforms->mvp, &p, clipcoord); + internal_mat4_mulvec4(uniforms->mvp, &p, clipcoord); color_tocolor32(in->vertex->color, _color); } |