DNA: Move irradiance grid light cache data to Object level #106808

Merged
Clément Foucault merged 13 commits from fclem/blender:lightprobe-data into main 2023-04-17 17:12:31 +02:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit f58fae995f - Show all commits

View File

@ -231,10 +231,10 @@ typedef struct LightProbeIrradianceData {
* Normalized visibility of distant light. Used for compositing grids together.
*/
typedef struct LightProbeVisibilityData {
uint8_t *L0;
uint8_t *L1_a;
uint8_t *L1_b;
uint8_t *L1_c;
float *L0;
float *L1_a;
float *L1_b;
float *L1_c;
} LightProbeVisibilityData;
/**