13 lines
280 B
C#
13 lines
280 B
C#
namespace Aiwaz.Contracts
|
|
{
|
|
|
|
interface IPingPongBuffer
|
|
{
|
|
ITexture InputTexture { get; set; }
|
|
ITexture OutputTexture { get; }
|
|
PingPongBufferDescription Descriptor { get; set; }
|
|
IRenderCommandNode RootNode { get; }
|
|
IRenderCommandNode PreProcessNode { get; }
|
|
};
|
|
}
|