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:
authorClément Foucault <foucault.clem@gmail.com>2020-08-16 16:38:34 +0300
committerClément Foucault <foucault.clem@gmail.com>2020-08-18 22:30:10 +0300
commitbf1b622dd962416fef94ccb2f47878eced31e20d (patch)
tree8622462ebdfbc6e347975d1b875b817356e4e84a /source/blender/gpu/intern/gpu_state.cc
parent10558d6973be8fc461a4b8aad734ba0881d18e85 (diff)
GPUState: GPU_blend final API renaming
We now use GPU_blend for enabling / disabling blending and explicitly set the blend equation.
Diffstat (limited to 'source/blender/gpu/intern/gpu_state.cc')
-rw-r--r--source/blender/gpu/intern/gpu_state.cc12
1 files changed, 1 insertions, 11 deletions
diff --git a/source/blender/gpu/intern/gpu_state.cc b/source/blender/gpu/intern/gpu_state.cc
index c670e034585..4c3b2cc119e 100644
--- a/source/blender/gpu/intern/gpu_state.cc
+++ b/source/blender/gpu/intern/gpu_state.cc
@@ -40,17 +40,7 @@
using namespace blender::gpu;
-void GPU_blend(bool enable)
-{
- if (enable) {
- GLStateStack::set_blend(GPU_BLEND_ALPHA);
- }
- else {
- GLStateStack::set_blend(GPU_BLEND_NONE);
- }
-}
-
-void GPU_blend_set_func_separate(eGPUBlend blend)
+void GPU_blend(eGPUBlend blend)
{
GLStateStack::set_blend(blend);
}