mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-14 05:56:42 +00:00
12 lines
316 B
C#
12 lines
316 B
C#
namespace Ryujinx.Graphics.GAL
|
|
{
|
|
public interface IComputePipeline
|
|
{
|
|
void Dispatch(int groupsX, int groupsY, int groupsZ);
|
|
|
|
void SetProgram(IProgram program);
|
|
|
|
void SetStorageBuffer(int index, BufferRange buffer);
|
|
void SetUniformBuffer(int index, BufferRange buffer);
|
|
}
|
|
}
|