summaryrefslogtreecommitdiff
path: root/src/example/04_bloom/preprocess.c
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2020-07-11 00:29:49 +0800
committerchai <chaifix@163.com>2020-07-11 00:29:49 +0800
commite849a07762a2feb3f124a08d50adeed52f085d5b (patch)
tree69207f80cf3372c6d5801d006966888f219e2a19 /src/example/04_bloom/preprocess.c
parent44e6647ab365a9261c904be839e356c06a545907 (diff)
*加internal前缀
Diffstat (limited to 'src/example/04_bloom/preprocess.c')
-rw-r--r--src/example/04_bloom/preprocess.c2
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);
}