将dev_attr从MaterialCreateConfig中移除改到最终的Create函数中。代码能编过,但是static自动注册失效了,待查。
This commit is contained in:
@@ -1,34 +1,6 @@
|
||||
#include<hgl/graph/mtl/MaterialLibrary.h>
|
||||
#include<hgl/util/JsonTool.h>
|
||||
|
||||
/*
|
||||
|
||||
material json example:
|
||||
|
||||
{
|
||||
"name":"material_name",
|
||||
"type":"2d",
|
||||
"parent":"parent_material_name",
|
||||
|
||||
"std2d":
|
||||
{
|
||||
"coordinate_system":"NDC",
|
||||
"local_to_world:"false",
|
||||
"position_format":"vec2"
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
STD_MTL_NAMESPACE_BEGIN
|
||||
|
||||
MaterialCreateInfo *Load2DMaterialFromJson(const Json::Value& json_root)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
MaterialCreateInfo *LoadMaterialFromJson(const Json::Value &json_root)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
STD_MTL_NAMESPACE_END
|
||||
|
@@ -42,7 +42,7 @@ private:
|
||||
|
||||
bool InitAutoMaterial()
|
||||
{
|
||||
mtl::Material2DCreateConfig cfg(GetDeviceAttribute(),"VertexColor2D",PrimitiveType::Triangles);
|
||||
mtl::Material2DCreateConfig cfg("VertexColor2D",PrimitiveType::Triangles);
|
||||
|
||||
cfg.coordinate_system=CoordinateSystem2D::NDC;
|
||||
cfg.local_to_world=false;
|
||||
|
Reference in New Issue
Block a user