a part of RenderFramework::Init(..)

This commit is contained in:
2024-11-12 01:51:14 +08:00
parent 66b75aceb9
commit 2bb1056b2a
6 changed files with 64 additions and 16 deletions

View File

@@ -13,7 +13,6 @@ class TileData;
class TileFont;
class FontSource;
class Window;
class VulkanInstance;
class RenderPassManager;
@@ -88,7 +87,7 @@ public:
RenderFramework();
virtual ~RenderFramework();
virtual bool Init(); ///<初始化
virtual bool Init(uint w,uint h,const OSString &app_name); ///<初始化
virtual void StartTime();

View File

@@ -114,6 +114,8 @@ public:
fullDrawIndexUint32=SupportLevel::Want;
blendOperationAdvanced=SupportLevel::Want;
wideLines=SupportLevel::Want;
}
};

View File

@@ -9,12 +9,6 @@
#include<hgl/graph/VKPipeline.h>
VK_NAMESPACE_BEGIN
1.RT支持多FBO,
2.RT内包含CommandBuffer
/**
* 渲染目标
*/

View File

@@ -1,5 +1,4 @@
#ifndef HGL_GRAPH_VULKAN_SWAP_CHAIN_INCLUDE
#define HGL_GRAPH_VULKAN_SWAP_CHAIN_INCLUDE
#pragma once
#include<hgl/graph/VK.h>
#include<hgl/graph/VKTexture.h>
@@ -31,4 +30,3 @@ public:
virtual ~Swapchain();
};//struct Swapchain
VK_NAMESPACE_END
#endif//HGL_GRAPH_VULKAN_SWAP_CHAIN_INCLUDE