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:
Diffstat (limited to 'source/blender/draw/DRW_engine.h')
-rw-r--r--source/blender/draw/DRW_engine.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/blender/draw/DRW_engine.h b/source/blender/draw/DRW_engine.h
index 60e8e40ea61..03ba8e39447 100644
--- a/source/blender/draw/DRW_engine.h
+++ b/source/blender/draw/DRW_engine.h
@@ -26,6 +26,7 @@
#ifndef __DRW_ENGINE_H__
#define __DRW_ENGINE_H__
+struct ARegion;
struct CollectionEngineSettings;
struct DRWPass;
struct Material;
@@ -34,6 +35,12 @@ struct DrawEngineType;
struct IDProperty;
struct bContext;
struct Object;
+struct SceneLayer;
+struct ViewContext;
+struct View3D;
+struct rcti;
+
+#include "BLI_sys_types.h" /* for bool */
/* Buffer and textures used by the viewport by default */
typedef struct DefaultFramebufferList {
@@ -54,6 +61,9 @@ void DRW_engine_viewport_data_size_get(
int *r_fbl_len, int *r_txl_len, int *r_psl_len, int *r_stl_len);
void DRW_draw_view(const struct bContext *C);
+void DRW_draw_select_loop(
+ struct ViewContext *vc, struct Scene *scene, struct SceneLayer *sl, struct View3D *v3d, struct ARegion *ar,
+ bool use_obedit_skip, bool use_nearest, const struct rcti *rect);
void DRW_object_engine_data_free(struct Object *ob);