[Bf-blender-cvs] [da4b09ac6f0] temp-vulkan-shader: Remove code that hides missing feature in master as it is now fixed in master.

Jeroen Bakker noreply at git.blender.org
Fri Dec 2 13:48:30 CET 2022


Commit: da4b09ac6f06eee1d476b21e0486557453a8794d
Author: Jeroen Bakker
Date:   Fri Dec 2 13:35:32 2022 +0100
Branches: temp-vulkan-shader
https://developer.blender.org/rBda4b09ac6f06eee1d476b21e0486557453a8794d

Remove code that hides missing feature in master as it is now fixed in master.

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

M	source/blender/gpu/intern/gpu_init_exit.c

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

diff --git a/source/blender/gpu/intern/gpu_init_exit.c b/source/blender/gpu/intern/gpu_init_exit.c
index af906ad685f..2ed524f8666 100644
--- a/source/blender/gpu/intern/gpu_init_exit.c
+++ b/source/blender/gpu/intern/gpu_init_exit.c
@@ -34,13 +34,12 @@ void GPU_init(void)
   gpu_shader_create_info_init();
 
   gpu_codegen_init();
-  // TODO(jbakker): this should never land in master.
-  // gpu_batch_init();
+  gpu_batch_init();
 }
 
 void GPU_exit(void)
 {
-  // gpu_batch_exit();
+  gpu_batch_exit();
 
   gpu_codegen_exit();



More information about the Bf-blender-cvs mailing list