Format more engine code

This commit is contained in:
Wojtek Figat
2022-06-14 20:17:00 +02:00
parent 7c923198e0
commit b49e5e9984
219 changed files with 348 additions and 1236 deletions

View File

@@ -14,18 +14,15 @@ class GPUTask;
class GPUTasksExecutor : public Object
{
protected:
Array<GPUTasksContext*> _contextList;
public:
/// <summary>
/// Destructor
/// </summary>
virtual ~GPUTasksExecutor();
public:
/// <summary>
/// Sync point event called on begin of the frame
/// </summary>
@@ -37,7 +34,6 @@ public:
virtual void FrameEnd() = 0;
public:
/// <summary>
/// Gets the context list.
/// </summary>
@@ -48,6 +44,5 @@ public:
}
protected:
GPUTasksContext* createContext();
};