[Bf-blender-cvs] [7966fb083e3] master: PyGPU: expose 'GPU_SHADER_3D_IMAGE_COLOR'

Germano Cavalcante noreply at git.blender.org
Fri Sep 9 23:31:41 CEST 2022


Commit: 7966fb083e3d2fc6a318a753b0b5b7b23c7d32a6
Author: Germano Cavalcante
Date:   Mon Sep 5 18:36:47 2022 -0300
Branches: master
https://developer.blender.org/rB7966fb083e3d2fc6a318a753b0b5b7b23c7d32a6

PyGPU: expose 'GPU_SHADER_3D_IMAGE_COLOR'

This shader is required by some addons that need to modulate the alpha of images.

===================================================================

M	source/blender/python/gpu/gpu_py_shader.c

===================================================================

diff --git a/source/blender/python/gpu/gpu_py_shader.c b/source/blender/python/gpu/gpu_py_shader.c
index 02fccedd820..fbc45124147 100644
--- a/source/blender/python/gpu/gpu_py_shader.c
+++ b/source/blender/python/gpu/gpu_py_shader.c
@@ -37,6 +37,9 @@
   "``IMAGE``\n" \
   "   :Attributes: vec3 pos, vec2 texCoord\n" \
   "   :Uniforms: sampler2D image\n" \
+  "``IMAGE_COLOR``\n" \
+  "   :Attributes: vec3 pos, vec2 texCoord\n" \
+  "   :Uniforms: sampler2D image, vec4 color\n" \
   "``SMOOTH_COLOR``\n" \
   "   :Attributes: vec3 pos, vec4 color\n" \
   "   :Uniforms: none\n" \
@@ -56,6 +59,7 @@
 static const struct PyC_StringEnumItems pygpu_shader_builtin_items[] = {
     {GPU_SHADER_3D_FLAT_COLOR, "FLAT_COLOR"},
     {GPU_SHADER_3D_IMAGE, "IMAGE"},
+    {GPU_SHADER_3D_IMAGE_COLOR, "IMAGE_COLOR"},
     {GPU_SHADER_3D_SMOOTH_COLOR, "SMOOTH_COLOR"},
     {GPU_SHADER_3D_UNIFORM_COLOR, "UNIFORM_COLOR"},
     {GPU_SHADER_3D_POLYLINE_FLAT_COLOR, "POLYLINE_FLAT_COLOR"},



More information about the Bf-blender-cvs mailing list