Home
last modified time | relevance | path

Searched refs:increment_z (Results 1 – 4 of 4) sorted by relevance

/dports/graphics/blender/blender-2.91.0/source/blender/draw/engines/eevee/shaders/
H A Dlightprobe_grid_display_vert.glsl10 uniform vec3 increment_z;
39 increment_z * ls_cell_location.z);
/dports/graphics/blender/blender-2.91.0/source/blender/makesdna/
H A DDNA_lightprobe_types.h140 float increment_z[3], _pad4; member
/dports/graphics/blender/blender-2.91.0/source/blender/draw/engines/eevee/
H A Deevee_lightprobes.c400 DRW_shgroup_uniform_vec3(shgrp, "increment_z", egrid->increment_z, 1); in EEVEE_lightprobes_cache_init()
558 copy_v3_fl3(egrid->increment_z, 0.0f, 0.0f, cell_dim[2]); in EEVEE_lightprobes_grid_data_from_object()
559 add_v3_v3(egrid->increment_z, half_cell_dim); in EEVEE_lightprobes_grid_data_from_object()
560 add_v3_fl(egrid->increment_z, -1.0f); in EEVEE_lightprobes_grid_data_from_object()
561 mul_m4_v3(ob->obmat, egrid->increment_z); in EEVEE_lightprobes_grid_data_from_object()
562 sub_v3_v3(egrid->increment_z, egrid->corner); in EEVEE_lightprobes_grid_data_from_object()
569 len_squared_v3(egrid->increment_z))); in EEVEE_lightprobes_grid_data_from_object()
H A Deevee_lightcache.c1025 madd_v3_v3fl(r_pos, egrid->increment_z, local_cell[2]); in grid_loc_to_world_loc()