Changeset View
Changeset View
Standalone View
Standalone View
source/blender/draw/intern/draw_cache_extract.h
| Show All 14 Lines | |||||
| * | * | ||||
| * Copyright 2019, Blender Foundation. | * Copyright 2019, Blender Foundation. | ||||
| */ | */ | ||||
| /** \file | /** \file | ||||
| * \ingroup draw | * \ingroup draw | ||||
| */ | */ | ||||
| #ifndef __DRAW_CACHE_EXTRACT_H__ | #pragma once | ||||
| #define __DRAW_CACHE_EXTRACT_H__ | |||||
| struct TaskGraph; | struct TaskGraph; | ||||
| /* Vertex Group Selection and display options */ | /* Vertex Group Selection and display options */ | ||||
| typedef struct DRW_MeshWeightState { | typedef struct DRW_MeshWeightState { | ||||
| int defgroup_active; | int defgroup_active; | ||||
| int defgroup_len; | int defgroup_len; | ||||
| ▲ Show 20 Lines • Show All 231 Lines • ▼ Show 20 Lines | void mesh_buffer_cache_create_requested(struct TaskGraph *task_graph, | ||||
| const float obmat[4][4], | const float obmat[4][4], | ||||
| const bool do_final, | const bool do_final, | ||||
| const bool do_uvedit, | const bool do_uvedit, | ||||
| const bool use_subsurf_fdots, | const bool use_subsurf_fdots, | ||||
| const DRW_MeshCDMask *cd_layer_used, | const DRW_MeshCDMask *cd_layer_used, | ||||
| const Scene *scene, | const Scene *scene, | ||||
| const ToolSettings *ts, | const ToolSettings *ts, | ||||
| const bool use_hide); | const bool use_hide); | ||||
| #endif /* __DRAW_CACHE_EXTRACT_H__ */ | |||||