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

@@ -9,19 +9,19 @@ namespace hgl
/**
* 文本可渲染对象
*/
class TextRenderable:public vulkan::Renderable
class TextRenderable:public Renderable
{
vulkan::GPUDevice * device;
vulkan::Material * mtl;
GPUDevice * device;
Material * mtl;
uint max_count; ///<缓冲区最大容量
vulkan::VAB * vab_position;
vulkan::VAB * vab_tex_coord;
VAB * vab_position;
VAB * vab_tex_coord;
public:
TextRenderable(vulkan::GPUDevice *,vulkan::Material *,uint mc=1024);
TextRenderable(GPUDevice *,Material *,uint mc=1024);
virtual ~TextRenderable();
public:
@@ -30,7 +30,7 @@ namespace hgl
bool WriteVertex (const float *fp);
bool WriteTexCoord (const float *fp);
};//class TextRenderable:public vulkan::Renderable
};//class TextRenderable:public Renderable
}//namespace graph
}//namespace hgl
#endif//HGL_GRAPH_TEXT_RENDERABLE_INCLUDE