use SortedSet instead of SortedSets

This commit is contained in:
2024-11-21 01:30:42 +08:00
parent 2c67990daa
commit 3259f1af4c
12 changed files with 19 additions and 19 deletions

View File

@@ -2,7 +2,7 @@
#define HGL_GRAPH_RENDER_NODE_INCLUDE
#include<hgl/graph/VK.h>
#include<hgl/type/SortedSets.h>
#include<hgl/type/SortedSet.h>
namespace hgl
{
namespace graph
@@ -27,7 +27,7 @@ namespace hgl
using RenderNodeList=List<RenderNode>;
using RenderNodePointerList=List<RenderNode *>;
using MaterialInstanceSets=SortedSets<MaterialInstance *>; ///<材质实例集合
using MaterialInstanceSets=SortedSet<MaterialInstance *>; ///<材质实例集合
}//namespace graph
}//namespace hgl
#endif//HGL_GRAPH_RENDER_NODE_INCLUDE