Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2018-06-07 20:40:47 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-06-07 20:40:47 +0300
commit1962ae69b16196e211f083223802744782804f11 (patch)
tree1d3bfeb801b7ad34162bda6e30d653d7cd53a87a /source/blender/gpu/intern/gpu_codegen.c
parent56f2293a51d8ec572325f2581c7decb3cf2f8419 (diff)
Rename GPU_material_create_uniform_buffer > GPU_material_uniform_buffer_create
Diffstat (limited to 'source/blender/gpu/intern/gpu_codegen.c')
-rw-r--r--source/blender/gpu/intern/gpu_codegen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_codegen.c b/source/blender/gpu/intern/gpu_codegen.c
index 76ecf411143..0dd9d1f0908 100644
--- a/source/blender/gpu/intern/gpu_codegen.c
+++ b/source/blender/gpu/intern/gpu_codegen.c
@@ -672,7 +672,7 @@ static int codegen_process_uniforms_functions(GPUMaterial *material, DynStr *ds,
/* Handle the UBO block separately. */
if ((material != NULL) && !BLI_listbase_is_empty(&ubo_inputs)) {
- GPU_material_create_uniform_buffer(material, &ubo_inputs);
+ GPU_material_uniform_buffer_create(material, &ubo_inputs);
/* Inputs are sorted */
BLI_dynstr_appendf(ds, "\nlayout (std140) uniform %s {\n", GPU_UBO_BLOCK_NAME);