2018-09-08 19:51:50 +02:00
|
|
|
namespace Ryujinx.Graphics.Texture
|
2018-04-08 21:17:35 +02:00
|
|
|
{
|
|
|
|
interface ISwizzle
|
|
|
|
{
|
2019-03-04 02:45:25 +01:00
|
|
|
int GetSwizzleOffset(int x, int y, int z);
|
2019-02-28 02:12:24 +01:00
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
void SetMipLevel(int level);
|
2019-02-28 02:12:24 +01:00
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
int GetMipOffset(int level);
|
2019-02-28 02:12:24 +01:00
|
|
|
|
2019-03-04 02:45:25 +01:00
|
|
|
int GetImageSize(int mipsCount);
|
2018-04-08 21:17:35 +02:00
|
|
|
}
|
|
|
|
}
|