Compare commits

..
Author SHA1 Message Date
nmzik 6d230abf5e Implement ftruncate abi 2026-08-03 08:14:44 +02:00
nmzik 5557080c45 perf: reduce texture registration and lookup overhead 2026-08-03 06:56:28 +02:00
+2 -1
View File
@@ -105,7 +105,8 @@ private:
};
// Inline owner storage for page-table entries. Texture pages normally have only a
// handful of owners, so avoid a heap allocation on the first 16 registrations.
// handful of owners, so avoid a heap allocation on the first 16 registrations as
// shadPS4 does with boost::container::small_vector<ImageId, 16>.
//
// Owners are packed into live uint64_t objects instead of being constructed in
// raw storage. This keeps sparse bucket construction cheap without relying on