mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-23 07:44:18 +00:00
static adjust
This commit is contained in:
parent
bf948ece63
commit
4d89d2d4ee
|
|
@ -86,10 +86,12 @@ public:
|
|||
std::unordered_map<TICEntry, ImageViewId> image_views;
|
||||
std::unordered_map<TSCEntry, SamplerId> samplers;
|
||||
|
||||
std::vector<SamplerId> graphics_sampler_ids;
|
||||
std::vector<SamplerId> compute_sampler_ids;
|
||||
std::vector<ImageViewId> graphics_image_view_ids;
|
||||
std::vector<ImageViewId> compute_image_view_ids;
|
||||
// Values tuned for Mario Brothership, see also descriptor_table.h
|
||||
// Change values as required.
|
||||
boost::container::static_vector<SamplerId, 0x1000 + 1> graphics_sampler_ids;
|
||||
boost::container::static_vector<SamplerId, 0x1000 + 1> compute_sampler_ids;
|
||||
boost::container::static_vector<ImageViewId, 0x80000 + 1> graphics_image_view_ids;
|
||||
boost::container::static_vector<ImageViewId, 0x80000 + 1> compute_image_view_ids;
|
||||
|
||||
TextureCacheGPUMap* gpu_page_table = nullptr;
|
||||
TextureCacheGPUMap* sparse_page_table = nullptr;
|
||||
|
|
|
|||
Loading…
Reference in a new issue