Changeset View
Changeset View
Standalone View
Standalone View
source/blender/render/RE_engine.h
| Show All 9 Lines | |||||
| #include "DNA_listBase.h" | #include "DNA_listBase.h" | ||||
| #include "DNA_node_types.h" | #include "DNA_node_types.h" | ||||
| #include "DNA_scene_types.h" | #include "DNA_scene_types.h" | ||||
| #include "RE_bake.h" | #include "RE_bake.h" | ||||
| #include "RNA_types.h" | #include "RNA_types.h" | ||||
| #include "BLI_threads.h" | #include "BLI_threads.h" | ||||
| struct BakeTargets; | |||||
| struct BakePixel; | struct BakePixel; | ||||
| struct Depsgraph; | struct Depsgraph; | ||||
| struct Main; | struct Main; | ||||
| struct Object; | struct Object; | ||||
| struct Render; | struct Render; | ||||
| struct RenderData; | struct RenderData; | ||||
| struct RenderEngine; | struct RenderEngine; | ||||
| struct RenderEngineType; | struct RenderEngineType; | ||||
| ▲ Show 20 Lines • Show All 109 Lines • ▼ Show 20 Lines | typedef struct RenderEngine { | ||||
| ListBase fullresult; | ListBase fullresult; | ||||
| char text[512]; /* IMA_MAX_RENDER_TEXT */ | char text[512]; /* IMA_MAX_RENDER_TEXT */ | ||||
| int resolution_x, resolution_y; | int resolution_x, resolution_y; | ||||
| struct ReportList *reports; | struct ReportList *reports; | ||||
| struct { | struct { | ||||
| const struct BakeTargets *targets; | |||||
| const struct BakePixel *pixels; | const struct BakePixel *pixels; | ||||
| float *result; | float *result; | ||||
| int width, height, depth; | int image_id; | ||||
| int object_id; | int object_id; | ||||
| } bake; | } bake; | ||||
| /* Depsgraph */ | /* Depsgraph */ | ||||
| struct Depsgraph *depsgraph; | struct Depsgraph *depsgraph; | ||||
| bool has_grease_pencil; | bool has_grease_pencil; | ||||
| /* callback for render pass query */ | /* callback for render pass query */ | ||||
| ▲ Show 20 Lines • Show All 131 Lines • Show Last 20 Lines | |||||