remove vulkan namespace

This commit is contained in:
2020-10-21 12:47:06 +08:00
parent 0e56a6b00c
commit c8955b6f35
45 changed files with 266 additions and 266 deletions

View File

@@ -17,13 +17,13 @@ namespace hgl
{
protected:
vulkan::GPUDevice *device;
GPUDevice *device;
MapObject<Form *,ThemeForm> form_list;
public:
ThemeEngine(vulkan::GPUDevice *dev){device=dev;}
ThemeEngine(GPUDevice *dev){device=dev;}
virtual ~ThemeEngine()=default;
virtual bool Init()=0;

View File

@@ -13,13 +13,13 @@ namespace hgl
protected:
Form *form;
hgl::graph::vulkan::RenderTarget *render_target;
hgl::graph::RenderTarget *render_target;
public:
ThemeForm(Form *);
void SetRenderTarget(hgl::graph::vulkan::RenderTarget *);
void SetRenderTarget(hgl::graph::RenderTarget *);
};//class ThemeForm
}//namespace gui
}//namespace hgl