Blender  V3.3
gpu_shader_2D_checker_info.hh
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later
2  * Copyright 2022 Blender Foundation. All rights reserved. */
3 
9 
10 GPU_SHADER_CREATE_INFO(gpu_shader_2D_checker)
11  .vertex_in(0, Type::VEC2, "pos")
12  .fragment_out(0, Type::VEC4, "fragColor")
13  .push_constant(Type::MAT4, "ModelViewProjectionMatrix")
14  .push_constant(Type::VEC4, "color1")
15  .push_constant(Type::VEC4, "color2")
16  .push_constant(Type::INT, "size")
17  .vertex_source("gpu_shader_2D_vert.glsl")
18  .fragment_source("gpu_shader_checker_frag.glsl")
19  .do_static_compilation(true);
#define GPU_SHADER_CREATE_INFO(_info)