Skip to content

Commit

Permalink
Actually enable upscaling in conformance utils. Was failing a test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Themaister committed Jun 8, 2024
1 parent 1267d24 commit 2549779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conformance_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ bool ReplayerState::init(Vulkan::Device *device_)

reference = create_replayer_driver_angrylion(builder, iface);
gpu = create_replayer_driver_parallel(*device, builder, iface, device_ != nullptr);
gpu_scaled = create_replayer_driver_parallel(*device, builder, iface, device_ != nullptr, false);
gpu_scaled = create_replayer_driver_parallel(*device, builder, iface, device_ != nullptr, true);
combined = create_side_by_side_driver(reference.get(), gpu.get(), iface);
builder.set_command_interface(combined.get());
return true;
Expand Down

0 comments on commit 2549779

Please sign in to comment.