port from perforce
This commit is contained in:
18
aiwaz/Aiwaz.Contracts/IRenderCommandNode.cs
Normal file
18
aiwaz/Aiwaz.Contracts/IRenderCommandNode.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.Collections.Generic;
|
||||
namespace Aiwaz.Contracts
|
||||
{
|
||||
public interface IRenderCommandNode
|
||||
{
|
||||
List<ICommandUser> CommandUsers { get; }
|
||||
bool IsDirty { get; }
|
||||
IRenderCommandNode Parent { get; set; }
|
||||
|
||||
void MarkDirty();
|
||||
void Add(ICommandUser argCommandUser);
|
||||
void Remove(ICommandUser argCommandUser);
|
||||
void ProcessCommands();
|
||||
|
||||
void GenerateDeviceCommands();
|
||||
ICommandBuffer CommandBuffer { get; }
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user