File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -175,8 +175,6 @@ pub fn main() {
175
175
ctx. build_pipelines (
176
176
vk:: PipelineCache :: null ( ) ,
177
177
vec ! [ (
178
- // HACK(eddyb) we need `multimodule` for `debugPrintf`
179
- // instrumentation to work (see `compile_shaders`).
180
178
VertexShaderEntryPoint {
181
179
module: format!( "{crate_ident}::main_vs" ) ,
182
180
entry_point: "main_vs" . into( ) ,
@@ -284,8 +282,9 @@ pub fn compile_shaders(shader: &RustGPUShader) -> Vec<SpvFile> {
284
282
print_inputs : true ,
285
283
print_backtrace : true ,
286
284
} )
287
- // HACK(eddyb) needed because of `debugPrintf` instrumentation limitations
288
- // (see https://github.com/KhronosGroup/SPIRV-Tools/issues/4892).
285
+ // TODO: `multimodule` is no longer needed since
286
+ // https://github.com/KhronosGroup/SPIRV-Tools/issues/4892 was fixed, but removing it is
287
+ // non-trivial and hasn't been done et.
289
288
. multimodule ( true )
290
289
. build ( )
291
290
. unwrap ( )
You can’t perform that action at this time.
0 commit comments