mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-01-29 19:16:47 -06:00
13 lines
316 B
C#
13 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);
|
|
}
|
|
}
|