mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-12-11 14:19:10 +00:00
video_core: Initial implementation of pipeline cache (#3816)
* Initial implementation * Fix for crash caused by stale stages data; cosmetics applied * Someone mentioned the assert * Async blob writer * Fix for memory leak * Remain stuff * Async changed to `packaged_task`
This commit is contained in:
@@ -159,7 +159,8 @@ struct GeometryRuntimeInfo {
|
||||
return num_outputs == other.num_outputs && outputs == other.outputs && num_invocations &&
|
||||
other.num_invocations && output_vertices == other.output_vertices &&
|
||||
in_primitive == other.in_primitive &&
|
||||
std::ranges::equal(out_primitive, other.out_primitive);
|
||||
std::ranges::equal(out_primitive, other.out_primitive) &&
|
||||
vs_copy_hash == other.vs_copy_hash;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user