Changeset View
Changeset View
Standalone View
Standalone View
source/blender/render/intern/include/render_types.h
| Show First 20 Lines • Show All 174 Lines • ▼ Show 20 Lines | struct Render { | ||||
| float clipsta; | float clipsta; | ||||
| float clipend; | float clipend; | ||||
| /* samples */ | /* samples */ | ||||
| SampleTables *samples; | SampleTables *samples; | ||||
| float jit[32][2]; | float jit[32][2]; | ||||
| float mblur_jit[32][2]; | float mblur_jit[32][2]; | ||||
| ListBase *qmcsamplers; | ListBase *qmcsamplers; | ||||
| int num_qmc_samplers; | |||||
| /* shadow counter, detect shadow-reuse for shaders */ | /* shadow counter, detect shadow-reuse for shaders */ | ||||
| int shadowsamplenr[BLENDER_MAX_THREADS]; | int shadowsamplenr[BLENDER_MAX_THREADS]; | ||||
| /* main, scene, and its full copy of renderdata and world */ | /* main, scene, and its full copy of renderdata and world */ | ||||
| struct Main *main; | struct Main *main; | ||||
| Scene *scene; | Scene *scene; | ||||
| RenderData r; | RenderData r; | ||||
| ▲ Show 20 Lines • Show All 494 Lines • Show Last 20 Lines | |||||