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_object_gl11.h')
-rw-r--r--source/blender/gpu/intern/gpu_object_gl11.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/blender/gpu/intern/gpu_object_gl11.h b/source/blender/gpu/intern/gpu_object_gl11.h
new file mode 100644
index 00000000000..4ddd9d3b309
--- /dev/null
+++ b/source/blender/gpu/intern/gpu_object_gl11.h
@@ -0,0 +1,11 @@
+#ifndef GLES
+
+void gpuVertexPointer_gl11(int size, int type, int stride, const void *pointer);
+void gpuNormalPointer_gl11( int type, int stride, const void *pointer);
+void gpuColorPointer_gl11 (int size, int type, int stride, const void *pointer);
+void gpuTexCoordPointer_gl11(int size, int type, int stride, const void *pointer);
+void gpuClientActiveTexture_gl11(int texture);
+
+void gpuCleanupAfterDraw_gl11(void);
+
+#endif