Blender V2.61 - r43446

addon::enums Namespace Reference

Variables

tuple devices
tuple feature_set
tuple shading_systems
tuple displacement_methods
tuple bvh_types
tuple filter_types

Variable Documentation

Initial value:
00001 (
00002     ("DYNAMIC_BVH", "Dynamic BVH", "Objects can be individually updated, at the cost of slower render time"),
00003     ("STATIC_BVH", "Static BVH", "Any object modification requires a complete BVH rebuild, but renders faster"),
00004     )

Definition at line 43 of file enums.py.

Initial value:
00001 (
00002     ("CPU", "CPU", "Use CPU for rendering"),
00003     ("GPU", "GPU Compute", "Use GPU compute device for rendering, configured in user preferences"))

Definition at line 23 of file enums.py.

Referenced by AUD_OpenALDevice::AUD_OpenALDevice(), Device::available_devices(), available_devices_func(), compute_device_list(), BlenderSync::get_session_params(), initRawInput(), main(), and options_parse().

Initial value:
00001 (
00002     ("BUMP", "Bump", "Bump mapping to simulate the appearance of displacement"),
00003     ("TRUE", "True", "Use true displacement only, requires fine subdivision"),
00004     ("BOTH", "Both", "Combination of displacement and bump mapping"),
00005     )

Definition at line 37 of file enums.py.

Initial value:
00001 (
00002     ("SUPPORTED", "Supported", "Only use finished and supported features"),
00003     ("EXPERIMENTAL", "Experimental", "Use experimental and incomplete features that might be broken or change in the future"),
00004     )

Definition at line 27 of file enums.py.

Initial value:
00001 (
00002     ("BOX", "Box", "Box filter"),
00003     ("GAUSSIAN", "Gaussian", "Gaussian filter"),
00004     )

Definition at line 48 of file enums.py.

Initial value:
00001 (
00002     ("GPU_COMPATIBLE", "GPU Compatible", "Restricted shading system compatible with GPU rendering"),
00003     ("OSL", "Open Shading Language", "Open Shading Language shading system that only runs on the CPU"),
00004     )

Definition at line 32 of file enums.py.