mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
rsx: Use simple_array for basic array of integers
- Some methods are getting spammed every draw call
This commit is contained in:
parent
0bb8127372
commit
24edfe2190
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ namespace rsx
|
|||
protected:
|
||||
|
||||
std::array<push_buffer_vertex_info, 16> vertex_push_buffers;
|
||||
std::vector<u32> element_push_buffer;
|
||||
rsx::simple_array<u32> element_push_buffer;
|
||||
|
||||
s32 m_skip_frame_ctr = 0;
|
||||
bool skip_current_frame = false;
|
||||
|
|
Loading…
Add table
Reference in a new issue