Changeset View
Changeset View
Standalone View
Standalone View
source/blender/gpu/intern/gpu_node_graph.h
| Show All 29 Lines | typedef enum eGPUDataSource { | ||||
| GPU_SOURCE_CONSTANT, | GPU_SOURCE_CONSTANT, | ||||
| GPU_SOURCE_UNIFORM, | GPU_SOURCE_UNIFORM, | ||||
| GPU_SOURCE_ATTR, | GPU_SOURCE_ATTR, | ||||
| GPU_SOURCE_UNIFORM_ATTR, | GPU_SOURCE_UNIFORM_ATTR, | ||||
| GPU_SOURCE_STRUCT, | GPU_SOURCE_STRUCT, | ||||
| GPU_SOURCE_TEX, | GPU_SOURCE_TEX, | ||||
| GPU_SOURCE_TEX_TILED_MAPPING, | GPU_SOURCE_TEX_TILED_MAPPING, | ||||
| GPU_SOURCE_FUNCTION_CALL, | GPU_SOURCE_FUNCTION_CALL, | ||||
| GPU_SOURCE_CRYPTOMATTE, | |||||
| } eGPUDataSource; | } eGPUDataSource; | ||||
| typedef enum { | typedef enum { | ||||
| GPU_NODE_LINK_NONE = 0, | GPU_NODE_LINK_NONE = 0, | ||||
| GPU_NODE_LINK_ATTR, | GPU_NODE_LINK_ATTR, | ||||
| GPU_NODE_LINK_UNIFORM_ATTR, | GPU_NODE_LINK_UNIFORM_ATTR, | ||||
| GPU_NODE_LINK_COLORBAND, | GPU_NODE_LINK_COLORBAND, | ||||
| GPU_NODE_LINK_CONSTANT, | GPU_NODE_LINK_CONSTANT, | ||||
| ▲ Show 20 Lines • Show All 157 Lines • Show Last 20 Lines | |||||