This commit is contained in:
ZY4N
2025-03-23 21:11:22 +01:00
parent 510398423a
commit c609d49f0d
49 changed files with 1412 additions and 924 deletions

View File

@@ -18,7 +18,7 @@ void shader_program_lookup::add(
const auto uniforms = shader_program_handle.check_uniform_support(all_uniforms);
ztu::logger::debug("add [%] uniforms: % attributes: %",
shader_program_handle.program_id,
shader_program_handle.id,
std::bitset<32>(uniforms),
std::bitset<32>(attributes)
);
@@ -185,7 +185,7 @@ void shader_program_lookup::print() {
const auto uniforms = m_mesh_shader_program_uniforms[i];
const auto [ attributes, locations ] = m_mesh_shader_program_attributes[i];
ztu::logger::debug("[%] uniforms: % attributes: % locations: %",
shader.program_id,
shader.id,
std::bitset<32>(uniforms),
std::bitset<32>(attributes),
std::bitset<32>(locations)