mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
Merge pull request #10973 from HyperspaceMadness/master
Increased Slang Max Params, Textures & Passes
This commit is contained in:
commit
6df4e7778f
@ -600,7 +600,8 @@ bool slang_reflect(
|
||||
}
|
||||
else if (index == SLANG_INVALID_TEXTURE_SEMANTIC)
|
||||
{
|
||||
RARCH_ERR("[slang]: Non-semantic textures not supported yet.\n");
|
||||
RARCH_ERR("[slang]: Non-semantic textures not supported yet, "
|
||||
"Probably a texture name or pass alias is not found. \n");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -93,7 +93,7 @@ enum slang_constant_buffer
|
||||
};
|
||||
|
||||
/* Vulkan minimum limit. */
|
||||
#define SLANG_NUM_BINDINGS 16
|
||||
#define SLANG_NUM_BINDINGS 32
|
||||
|
||||
struct slang_texture_semantic_map
|
||||
{
|
||||
|
@ -26,11 +26,11 @@
|
||||
RETRO_BEGIN_DECLS
|
||||
|
||||
#ifndef GFX_MAX_SHADERS
|
||||
#define GFX_MAX_SHADERS 26
|
||||
#define GFX_MAX_SHADERS 64
|
||||
#endif
|
||||
|
||||
#ifndef GFX_MAX_TEXTURES
|
||||
#define GFX_MAX_TEXTURES 8
|
||||
#define GFX_MAX_TEXTURES 16
|
||||
#endif
|
||||
|
||||
#ifndef GFX_MAX_VARIABLES
|
||||
@ -38,7 +38,7 @@ RETRO_BEGIN_DECLS
|
||||
#endif
|
||||
|
||||
#ifndef GFX_MAX_PARAMETERS
|
||||
#define GFX_MAX_PARAMETERS 128
|
||||
#define GFX_MAX_PARAMETERS 256
|
||||
#endif
|
||||
|
||||
#ifndef GFX_MAX_FRAME_HISTORY
|
||||
|
Loading…
Reference in New Issue
Block a user