aboutsummaryrefslogblamecommitdiff
path: root/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetImageCommand.cs
blob: 243480a817ecaadf962dfcb72ee7883aacb6342f (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                
                                                    
                              

                                                      
                                                                      
     
                                                                        
                                   


                                            
                                                                                                       
         
                           





                                                                                                          
                                                                                                                                                        

         
using Ryujinx.Graphics.GAL.Multithreading.Model;
using Ryujinx.Graphics.GAL.Multithreading.Resources;
using Ryujinx.Graphics.Shader;

namespace Ryujinx.Graphics.GAL.Multithreading.Commands
{
    struct SetImageCommand : IGALCommand, IGALCommand<SetImageCommand>
    {
        public readonly CommandType CommandType => CommandType.SetImage;
        private ShaderStage _stage;
        private int _binding;
        private TableRef<ITexture> _texture;
        private Format _imageFormat;

        public void Set(ShaderStage stage, int binding, TableRef<ITexture> texture, Format imageFormat)
        {
            _stage = stage;
            _binding = binding;
            _texture = texture;
            _imageFormat = imageFormat;
        }

        public static void Run(ref SetImageCommand command, ThreadedRenderer threaded, IRenderer renderer)
        {
            renderer.Pipeline.SetImage(command._stage, command._binding, command._texture.GetAs<ThreadedTexture>(threaded)?.Base, command._imageFormat);
        }
    }
}