mirror of https://github.com/PCSX2/pcsx2.git
gsdx ogl: extend state to support up to 8 textures
This commit is contained in:
parent
e45f90fac3
commit
a9d25efcde
|
@ -48,8 +48,8 @@ namespace GLState {
|
||||||
|
|
||||||
GLuint rt;
|
GLuint rt;
|
||||||
GLuint ds;
|
GLuint ds;
|
||||||
GLuint tex_unit[4];
|
GLuint tex_unit[8];
|
||||||
GLuint64 tex_handle[4];
|
GLuint64 tex_handle[8];
|
||||||
|
|
||||||
GLuint ps;
|
GLuint ps;
|
||||||
GLuint gs;
|
GLuint gs;
|
||||||
|
|
|
@ -50,8 +50,8 @@ namespace GLState {
|
||||||
|
|
||||||
extern GLuint rt; // render target
|
extern GLuint rt; // render target
|
||||||
extern GLuint ds; // Depth-Stencil
|
extern GLuint ds; // Depth-Stencil
|
||||||
extern GLuint tex_unit[4]; // shader input texture
|
extern GLuint tex_unit[8]; // shader input texture
|
||||||
extern GLuint64 tex_handle[4]; // shader input texture
|
extern GLuint64 tex_handle[8]; // shader input texture
|
||||||
|
|
||||||
extern GLuint ps;
|
extern GLuint ps;
|
||||||
extern GLuint gs;
|
extern GLuint gs;
|
||||||
|
|
Loading…
Reference in New Issue