Changeset View
Changeset View
Standalone View
Standalone View
source/blender/render/RE_bake.h
| Show First 20 Lines • Show All 53 Lines • ▼ Show 20 Lines | typedef struct BakeTargets { | ||||
| int num_channels; | int num_channels; | ||||
| /* Baking to non-color data image. */ | /* Baking to non-color data image. */ | ||||
| bool is_noncolor; | bool is_noncolor; | ||||
| } BakeTargets; | } BakeTargets; | ||||
| typedef struct BakePixel { | typedef struct BakePixel { | ||||
| int primitive_id, object_id; | int primitive_id, object_id; | ||||
| int seed; | |||||
| float uv[2]; | float uv[2]; | ||||
| float du_dx, du_dy; | float du_dx, du_dy; | ||||
| float dv_dx, dv_dy; | float dv_dx, dv_dy; | ||||
| } BakePixel; | } BakePixel; | ||||
| typedef struct BakeHighPolyData { | typedef struct BakeHighPolyData { | ||||
| struct Object *ob; | struct Object *ob; | ||||
| struct Object *ob_eval; | struct Object *ob_eval; | ||||
| ▲ Show 20 Lines • Show All 70 Lines • Show Last 20 Lines | |||||