FCT
载入中...
搜索中...
未找到
VK_DepthStencilView.h
浏览该文件的文档.
1//
2// Created by Administrator on 2025/4/16.
3//
4
5#include "../ThirdParty.h"
7#include "./VK_Image.h"
9
10#ifndef VK_DEPTHSTENCILVIEW_H
11#define VK_DEPTHSTENCILVIEW_H
12
13namespace FCT
14{
15 namespace RHI
16 {
18 {
19 public:
21 ~VK_DepthStencilView() override;
22 bool create() override;
23 vk::ImageView getImageView() const { return m_view; }
24
25 private:
27 vk::ImageView m_view;
28 };
29 }
30}
31
32#endif //VK_DEPTHSTENCILVIEW_H