Fix: EEVEE-Next: Remove uneeeded dependencies

This fix some missing binding errors.
This commit is contained in:
Clément Foucault
2024-05-18 19:20:50 +02:00
parent 46a61f795e
commit ba147831a4

View File

@@ -64,11 +64,7 @@ GPU_SHADER_CREATE_INFO(eevee_light_culling_tile)
GPU_SHADER_CREATE_INFO(eevee_light_shadow_setup)
.do_static_compilation(true)
.additional_info("eevee_shared",
"draw_view",
"draw_view_culling",
"eevee_sampling_data",
"eevee_global_ubo")
.additional_info("eevee_shared", "eevee_sampling_data", "eevee_global_ubo")
.local_group_size(CULLING_SELECT_GROUP_SIZE)
.storage_buf(0, Qualifier::READ, "LightCullingData", "light_cull_buf")
.storage_buf(1, Qualifier::READ_WRITE, "LightData", "light_buf[]")