aboutsummaryrefslogblamecommitdiff
path: root/src/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs
blob: c510414678917ebad22bf446ab3b81feb5144034 (plain) (tree)
1
2
3
4
5


                                              
                                           













                                                                          
                               
                                                          
 
                                                           
 
                                                                    
                                      
         
                                                       
 
                                                        
         
     
using System.Collections.Generic;

namespace Ryujinx.Graphics.Shader.StructuredIr
{
    readonly struct TransformFeedbackOutput
    {
        public readonly bool Valid;
        public readonly int Buffer;
        public readonly int Offset;
        public readonly int Stride;

        public TransformFeedbackOutput(int buffer, int offset, int stride)
        {
            Valid = true;
            Buffer = buffer;
            Offset = offset;
            Stride = stride;
        }
    }

    class StructuredProgramInfo
    {
        public List<StructuredFunction> Functions { get; }

        public HashSet<IoDefinition> IoDefinitions { get; }

        public HelperFunctionsMask HelperFunctionsMask { get; set; }

        public StructuredProgramInfo()
        {
            Functions = new List<StructuredFunction>();

            IoDefinitions = new HashSet<IoDefinition>();
        }
    }
}