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