refactor(renderer): 移除冗余的<vector>头文件引入
清理不再需要的<vector>头文件,保持头文件简洁性
This commit is contained in:
parent
f7e4f89cca
commit
d387532738
|
|
@ -11,7 +11,6 @@
|
|||
#include <renderer/texture.h>
|
||||
#include <renderer/uniform_buffer.h>
|
||||
#include <renderer/viewport_adapter.h>
|
||||
#include <vector>
|
||||
|
||||
namespace extra2d {
|
||||
|
||||
|
|
@ -25,7 +24,7 @@ class AssetsModule;
|
|||
* - 通过事件接收渲染命令
|
||||
* - 自动批处理和排序
|
||||
* - 执行实际渲染
|
||||
*
|
||||
*
|
||||
* 资源管理已迁移到 AssetsModule
|
||||
*/
|
||||
class RendererModule : public Module {
|
||||
|
|
|
|||
Loading…
Reference in New Issue