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