FCT
载入中...
搜索中...
未找到
RenderTargetView.h
浏览该文件的文档.
1//
2// Created by Administrator on 2025/3/27.
3//
5#include "./Image.h"
6#ifndef FCT_RHI_RENDERTARGETVIEW_H
7#define FCT_RHI_RENDERTARGETVIEW_H
8namespace FCT
9{
10 namespace RHI
11 {
13 {
14 public:
15 virtual ~RenderTargetView() = default;
17 {
18 m_image = image;
19 }
21 {
22 return m_image;
23 }
24 virtual void create() = 0;
25 protected:
27 };
28 }
29}
30#endif //FCT_RHI_RENDERTARGETVIEW_H
virtual ~RenderTargetView()=default
void image(RHI::Image *image)
virtual void create()=0