mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12: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:
|
protected:
|
||||||
|
|
||||||
std::array<push_buffer_vertex_info, 16> vertex_push_buffers;
|
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;
|
s32 m_skip_frame_ctr = 0;
|
||||||
bool skip_current_frame = false;
|
bool skip_current_frame = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue