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