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

gpu_matrix_private.h « intern « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2889f5ed629a5392f8fae9afddd985ce478be5d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup gpu
 */

#pragma once

#ifdef __cplusplus
extern "C" {
#endif

struct GPUMatrixState *GPU_matrix_state_create(void);
void GPU_matrix_state_discard(struct GPUMatrixState *state);

#ifdef __cplusplus
}
#endif