Remove some unused constants and other code

This commit is contained in:
gdk 2019-11-03 22:28:44 -03:00 committed by Thog
parent 3ab5c23f49
commit a31fced221
2 changed files with 0 additions and 23 deletions

View file

@ -7,16 +7,6 @@ namespace Ryujinx.Graphics.Shader.Translation.Optimizations
{
static class BindlessToIndexed
{
private const int StorageDescsBaseOffset = 0x44; // In words.
private const int UbeStorageDescsBaseOffset = 0x84; // In words.
private const int UbeStorageMaxCount = 14;
private const int StorageDescSize = 4; // In words.
private const int StorageMaxCount = 16;
private const int StorageDescsSize = StorageDescSize * StorageMaxCount;
public static void RunPass(BasicBlock block)
{
// We can turn a bindless texture access into a indexed access,