diff options
author | chai <chaifix@163.com> | 2020-07-11 00:29:49 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2020-07-11 00:29:49 +0800 |
commit | e849a07762a2feb3f124a08d50adeed52f085d5b (patch) | |
tree | 69207f80cf3372c6d5801d006966888f219e2a19 /src/example/04_bloom/preprocess.c | |
parent | 44e6647ab365a9261c904be839e356c06a545907 (diff) |
*加internal前缀
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); } |