Blender Git Loki
Git Commits -> Revision 0852ecd
Revision 0852ecd by Jeroen Bakker (master) August 28, 2020, 12:47 (GMT) |
DrawEngine: Shader Test Suite A test case that compiles all the GLSL shaders for workbench, gpencil, overlay and some of eevee. Compilation is still platform dependent, but when run on a test-farm with different hardware we will be able to detect GLSL compilation errors early on. The test will be compiled when `WITH_GTEST` and `WITH_OPENGL_DRAW_TESTS` are On. For eevee only the shaders inside eevee_shaders.c are included. EEVEE has some shaders located inside the submodule. They aren't accessible to the outside and aren't added to the test case. We should see how we want to add them. For the test cases it is better to move them to eevee_shaders.c, but for eevee perspective it is better to keep them in the submodule. Keeping them in the submodule could lead to situations that is harder to test. as the shader could already have been initialized. Reviewed By: Cl�ment Foucault Differential Revision: https://developer.blender.org/D8667 |
Commit Details:
Full Hash: 0852ecd844f8dda21623774d3aa7dc372e81be2f
Parent Commit: 2654e9c
Lines Changed: +381, -1
2 Added Paths:
/source/blender/draw/intern/draw_manager_testing.h (+39, -0) (View)
/source/blender/draw/tests/shaders_test.cc (+270, -0) (View)
/source/blender/draw/tests/shaders_test.cc (+270, -0) (View)
6 Modified Paths:
/source/blender/draw/CMakeLists.txt (+22, -0) (Diff)
/source/blender/draw/engines/eevee/eevee_private.h (+8, -0) (Diff)
/source/blender/draw/engines/gpencil/gpencil_engine.h (+9, -1) (Diff)
/source/blender/draw/engines/overlay/overlay_private.h (+10, -0) (Diff)
/source/blender/draw/engines/workbench/workbench_private.h (+7, -0) (Diff)
/source/blender/draw/intern/draw_manager.c (+16, -0) (Diff)
/source/blender/draw/engines/eevee/eevee_private.h (+8, -0) (Diff)
/source/blender/draw/engines/gpencil/gpencil_engine.h (+9, -1) (Diff)
/source/blender/draw/engines/overlay/overlay_private.h (+10, -0) (Diff)
/source/blender/draw/engines/workbench/workbench_private.h (+7, -0) (Diff)
/source/blender/draw/intern/draw_manager.c (+16, -0) (Diff)