mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
rsx: reduce shaders_cache::unpacked_type size for android
This commit is contained in:
parent
edf096fc13
commit
7520c09087
1 changed files with 7 additions and 1 deletions
|
@ -21,7 +21,13 @@ namespace rsx
|
||||||
template <typename pipeline_storage_type, typename backend_storage>
|
template <typename pipeline_storage_type, typename backend_storage>
|
||||||
class shaders_cache
|
class shaders_cache
|
||||||
{
|
{
|
||||||
using unpacked_type = lf_fifo<std::tuple<pipeline_storage_type, RSXVertexProgram, RSXFragmentProgram>, 1000>; // TODO: Determine best size
|
using unpacked_type = lf_fifo<std::tuple<pipeline_storage_type, RSXVertexProgram, RSXFragmentProgram>,
|
||||||
|
#ifdef ANDROID
|
||||||
|
200
|
||||||
|
#else
|
||||||
|
1000 // TODO: Determine best size
|
||||||
|
#endif
|
||||||
|
>;
|
||||||
|
|
||||||
struct pipeline_data
|
struct pipeline_data
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue