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:
Diffstat (limited to 'source/blender/gpu/intern/gpu_vertex_format.cc')
-rw-r--r--source/blender/gpu/intern/gpu_vertex_format.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_vertex_format.cc b/source/blender/gpu/intern/gpu_vertex_format.cc
index 2e8017660d0..a25b2b67e2e 100644
--- a/source/blender/gpu/intern/gpu_vertex_format.cc
+++ b/source/blender/gpu/intern/gpu_vertex_format.cc
@@ -33,7 +33,6 @@
#include "BLI_utildefines.h"
#include "GPU_shader.h"
-#include "gpu_shader_private.h"
#define PACK_DEBUG 0
@@ -480,6 +479,8 @@ static void get_fetch_mode_and_comp_type(int gl_type,
void GPU_vertformat_from_shader(GPUVertFormat *format, const GPUShader *shader)
{
+ UNUSED_VARS(format, shader);
+#if 0 /* TODO (fclem) port to GLShader */
GPU_vertformat_clear(format);
GPUVertAttr *attr = &format->attrs[0];
@@ -512,4 +513,5 @@ void GPU_vertformat_from_shader(GPUVertFormat *format, const GPUShader *shader)
attr->comp_type = comp_type;
attr += 1;
}
+#endif
}