Fix error in previous commit.

This commit is contained in:
Jeroen Bakker 2022-01-21 14:35:27 +01:00
parent 93065a67c6
commit 5e51a5e8a4
Notes: blender-bot 2023-02-13 16:27:44 +01:00
Referenced by issue #95052, 3DViewport is missing overlay.
1 changed files with 2 additions and 2 deletions

View File

@ -198,8 +198,8 @@ static const GPUShaderStages builtin_shader_stages[GPU_SHADER_BUILTIN_LEN] = {
#ifdef __APPLE__
/* GPUShaderCreateInfo is disabled on MacOS due to mismatch with OCIO shader. See
* T95052 for more details. */
.vert = "gpu_shader_2D_image_vert.glsl",
.frag = "gpu_shader_image_overlays_merge_frag.glsl",
.vert = datatoc_gpu_shader_2D_image_vert_glsl,
.frag = datatoc_gpu_shader_image_overlays_merge_frag_glsl,
#else
.create_info = "gpu_shader_2D_image_overlays_merge",
#endif