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

GPU_common_types.h « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c91d60812f2ff7127a41658be3a27c943a494cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** \file
 * \ingroup gpu
 */

#pragma once

#ifdef __cplusplus
extern "C" {
#endif

typedef enum eGPUFrontFace {
  GPU_CLOCKWISE,
  GPU_COUNTERCLOCKWISE,
} eGPUFrontFace;

#ifdef __cplusplus
}
#endif