FCT
载入中...
搜索中...
未找到
IRenderTarget.h
浏览该文件的文档.
1#pragma once
2namespace FCT {
3 class Context;
9 class Image;
11 public:
12 virtual RenderTargetType getType() const = 0;
13 virtual void bind(Context* ctx) = 0;
14 virtual Image* getImage() const = 0;
15 //virtual std::vector<Image*> getTargetImages() = 0;
16 private:
17
18 };
19}
virtual RenderTargetType getType() const =0
virtual Image * getImage() const =0
virtual void bind(Context *ctx)=0