mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-27 15:49:04 +02:00
static adjust
This commit is contained in:
parent
807b521658
commit
13038acd9f
1 changed files with 6 additions and 4 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue