Cogs.Core
ComputeTask.h
1#pragma once
2
3#include "ProcessTask.h"
4
5namespace Cogs
6{
7 namespace Core
8 {
9 struct ComputeTask : public ProcessTask
10 {
11 virtual ~ComputeTask() {}
12 void initialize(RenderTaskContext * context) override;
13 void cleanup(RenderTaskContext * context) override;
14 void apply(RenderTaskContext * context) override;
15 };
16 }
17}
Contains all Cogs related functionality.
Definition: FieldSetter.h:23