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:
authorCampbell Barton <ideasman42@gmail.com>2017-05-02 20:06:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-05-02 20:06:37 +0300
commit075638f85cc0056fb6b50ac5a40fe8b2e217a8b5 (patch)
tree06528ab8b935522d13b920a3ecd3de3574b99b83 /source/blender/draw/DRW_engine.h
parent3f567535da163df7e77fe9438cc80fb8b2c67b87 (diff)
Cleanup: consistent arg order
Diffstat (limited to 'source/blender/draw/DRW_engine.h')
-rw-r--r--source/blender/draw/DRW_engine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/draw/DRW_engine.h b/source/blender/draw/DRW_engine.h
index 8811309bcc1..125a9d8d992 100644
--- a/source/blender/draw/DRW_engine.h
+++ b/source/blender/draw/DRW_engine.h
@@ -67,14 +67,14 @@ void DRW_draw_view(const struct bContext *C);
void DRW_draw_render_loop(
struct Depsgraph *graph,
- struct View3D *v3d, struct ARegion *ar);
+ struct ARegion *ar, struct View3D *v3d);
void DRW_draw_render_loop_offscreen(
struct Depsgraph *graph,
- struct View3D *v3d, struct ARegion *ar,
+ struct ARegion *ar, struct View3D *v3d,
struct GPUOffScreen *ofs);
void DRW_draw_select_loop(
struct Depsgraph *graph,
- struct View3D *v3d, struct ARegion *ar,
+ struct ARegion *ar, struct View3D *v3d,
bool use_obedit_skip, bool use_nearest, const struct rcti *rect);
void DRW_draw_depth_loop(
struct Depsgraph *graph,