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 'doc/python_api/examples/gpu.shader.py')
-rw-r--r--doc/python_api/examples/gpu.shader.py31
1 files changed, 16 insertions, 15 deletions
diff --git a/doc/python_api/examples/gpu.shader.py b/doc/python_api/examples/gpu.shader.py
index 7ffd3fe85c8..3c72e70378c 100644
--- a/doc/python_api/examples/gpu.shader.py
+++ b/doc/python_api/examples/gpu.shader.py
@@ -4,32 +4,33 @@ Built-in shaders
All built-in shaders have the ``mat4 ModelViewProjectionMatrix`` uniform.
The value of it can only be modified using the :class:`gpu.matrix` module.
-"""
2D_UNIFORM_COLOR:
- attributes: vec3 pos
- uniforms: vec4 color
+ attributes: vec3 pos
+ uniforms: vec4 color
2D_FLAT_COLOR:
- attributes: vec3 pos, vec4 color
- uniforms: -
+ attributes: vec3 pos, vec4 color
+ uniforms: -
2D_SMOOTH_COLOR:
- attributes: vec3 pos, vec4 color
- uniforms: -
+ attributes: vec3 pos, vec4 color
+ uniforms: -
2D_IMAGE:
- attributes: vec3 pos, vec2 texCoord
- uniforms: sampler2D image
+ attributes: vec3 pos, vec2 texCoord
+ uniforms: sampler2D image
3D_UNIFORM_COLOR:
- attributes: vec3 pos
- uniforms: vec4 color
+ attributes: vec3 pos
+ uniforms: vec4 color
3D_FLAT_COLOR:
- attributes: vec3 pos, vec4 color
- uniforms: -
+ attributes: vec3 pos, vec4 color
+ uniforms: -
3D_SMOOTH_COLOR:
- attributes: vec3 pos, vec4 color
- uniforms: -
+ attributes: vec3 pos, vec4 color
+ uniforms: -
+
+"""