Compare commits

...

4 Commits

Author SHA1 Message Date
Albertfanmingo
2e81d78eef
Merge db472e4311 into 7d158acc3b 2024-09-30 22:44:00 +02:00
gdkchan
7d158acc3b
Do not try to create a texture pool if shader does not use textures (#7379) 2024-09-30 11:41:07 -03:00
Albertfanmingo
db472e4311 Returned horizontal minimum to 800. 2024-07-24 10:04:06 -06:00
Albertfanmingo
e4f56dfa6b Change minimum resolution to 720x400. 2024-07-23 20:47:22 -06:00
3 changed files with 3 additions and 3 deletions

View File

@ -743,7 +743,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
constantBufferUsePerStageMask &= ~(1 << index);
}
if (checkTextures)
if (checkTextures && _allTextures.Length > 0)
{
TexturePool pool = channel.TextureManager.GetTexturePool(poolState.TexturePoolGpuVa, poolState.TexturePoolMaximumId);

View File

@ -15,7 +15,7 @@
Width="{Binding WindowWidth}"
Height="{Binding WindowHeight}"
MinWidth="800"
MinHeight="500"
MinHeight="400"
d:DesignHeight="720"
d:DesignWidth="1280"
x:DataType="viewModels:MainWindowViewModel"

View File

@ -13,7 +13,7 @@
Width="1100"
Height="768"
MinWidth="800"
MinHeight="480"
MinHeight="400"
WindowStartupLocation="CenterOwner"
x:DataType="viewModels:SettingsViewModel"
mc:Ignorable="d"