Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gpu_clip_planes_info.hh « infos « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c895b9de494bac644fcef8e140b1c8e6fcf2267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2022 Blender Foundation. All rights reserved. */

/** \file
 * \ingroup gpu
 */

#include "gpu_shader_create_info.hh"

GPU_SHADER_CREATE_INFO(gpu_clip_planes)
    .uniform_buf(1, "GPUClipPlanes", "clipPlanes", Frequency::PASS)
    .typedef_source("GPU_shader_shared.h")
    .define("USE_WORLD_CLIP_PLANES");