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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2022-06-05 13:15:22 +0300
committerHans Goudey <h.goudey@me.com>2022-06-05 13:15:31 +0300
commite37eebf16f5b8be99728871adbbe950906b9da69 (patch)
tree3f0d2609f1b5655d480f666c53cbaa7412919149 /source/blender/draw/intern/mesh_extractors/extract_mesh.hh
parent899ec8b6b8035bde44d49d228c30698499a87080 (diff)
Cleanup: Comments and formatting in mesh extract headers
Also remove accidentally committed WIP commented code.
Diffstat (limited to 'source/blender/draw/intern/mesh_extractors/extract_mesh.hh')
-rw-r--r--source/blender/draw/intern/mesh_extractors/extract_mesh.hh18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/draw/intern/mesh_extractors/extract_mesh.hh b/source/blender/draw/intern/mesh_extractors/extract_mesh.hh
index bc97a62e4b1..8052b277d45 100644
--- a/source/blender/draw/intern/mesh_extractors/extract_mesh.hh
+++ b/source/blender/draw/intern/mesh_extractors/extract_mesh.hh
@@ -184,38 +184,38 @@ using ExtractLVertMeshFn = void(const MeshRenderData *mr,
const MVert *mv,
int lvert_index,
void *data);
-using ExtractLooseGeomSubdivFn = void(const struct DRWSubdivCache *subdiv_cache,
+using ExtractLooseGeomSubdivFn = void(const DRWSubdivCache *subdiv_cache,
const MeshRenderData *mr,
void *buffer,
void *data);
using ExtractInitFn = void(const MeshRenderData *mr,
- struct MeshBatchCache *cache,
+ MeshBatchCache *cache,
void *buffer,
void *r_data);
using ExtractFinishFn = void(const MeshRenderData *mr,
- struct MeshBatchCache *cache,
+ MeshBatchCache *cache,
void *buffer,
void *data);
using ExtractTaskReduceFn = void(void *userdata, void *task_userdata);
-using ExtractInitSubdivFn = void(const struct DRWSubdivCache *subdiv_cache,
+using ExtractInitSubdivFn = void(const DRWSubdivCache *subdiv_cache,
const MeshRenderData *mr,
- struct MeshBatchCache *cache,
+ MeshBatchCache *cache,
void *buf,
void *data);
-using ExtractIterSubdivBMeshFn = void(const struct DRWSubdivCache *subdiv_cache,
+using ExtractIterSubdivBMeshFn = void(const DRWSubdivCache *subdiv_cache,
const MeshRenderData *mr,
void *data,
uint subdiv_quad_index,
const BMFace *coarse_quad);
-using ExtractIterSubdivMeshFn = void(const struct DRWSubdivCache *subdiv_cache,
+using ExtractIterSubdivMeshFn = void(const DRWSubdivCache *subdiv_cache,
const MeshRenderData *mr,
void *data,
uint subdiv_quad_index,
const MPoly *coarse_quad);
-using ExtractFinishSubdivFn = void(const struct DRWSubdivCache *subdiv_cache,
+using ExtractFinishSubdivFn = void(const DRWSubdivCache *subdiv_cache,
const MeshRenderData *mr,
- struct MeshBatchCache *cache,
+ MeshBatchCache *cache,
void *buf,
void *data);