Update OpenTK to 4.9.4, OpenAL to 1.24.3

This commit is contained in:
KeatonTheBot 2025-05-31 23:52:13 -05:00
parent d7b797bf02
commit ef6f43825d
7 changed files with 25 additions and 25 deletions

View file

@ -553,7 +553,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
level,
x,
width,
format.PixelFormat,
(InternalFormat)format.PixelFormat,
mipSize,
data);
}
@ -580,7 +580,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
layer,
width,
1,
format.PixelFormat,
(InternalFormat)format.PixelFormat,
mipSize,
data);
}
@ -609,7 +609,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
y,
width,
height,
format.PixelFormat,
(InternalFormat)format.PixelFormat,
mipSize,
data);
}
@ -642,7 +642,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
width,
height,
1,
format.PixelFormat,
(InternalFormat)format.PixelFormat,
mipSize,
data);
}
@ -673,7 +673,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
y,
width,
height,
format.PixelFormat,
(InternalFormat)format.PixelFormat,
mipSize,
data);
}
@ -741,7 +741,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
level,
0,
width,
format.PixelFormat,
(InternalFormat)format.PixelFormat,
mipSize,
data);
}
@ -769,7 +769,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
0,
width,
height,
format.PixelFormat,
(InternalFormat)format.PixelFormat,
mipSize,
data);
}
@ -802,7 +802,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
width,
height,
depth,
format.PixelFormat,
(InternalFormat)format.PixelFormat,
mipSize,
data);
}
@ -837,7 +837,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
0,
width,
height,
format.PixelFormat,
(InternalFormat)format.PixelFormat,
mipSize / 6,
data + faceOffset);
}