to support newly String<>/IDName/Compare
This commit is contained in:
parent
d810540b81
commit
bd0a3d8be1
@ -1 +1 @@
|
||||
Subproject commit 85436b5a7b0bc9347fcd3321a6895464470f1353
|
||||
Subproject commit 0fae462338cd01c5a26d0a8f0175fe3729a65c94
|
2
CMCore
2
CMCore
@ -1 +1 @@
|
||||
Subproject commit 7c08fbc530c97394932bfafab73d35073b49f7d8
|
||||
Subproject commit 5aad7d81419d02141b3b3f53661e2c8e3e763163
|
@ -1 +1 @@
|
||||
Subproject commit 103b0d845dc9fdbc10e2e40ab0fa346d133dc1ae
|
||||
Subproject commit aa7abe47631cdb687528400409ef295fd2c050b8
|
@ -1 +1 @@
|
||||
Subproject commit c958a6cb2ac4a52716eabc1c45eba184f4c7e46c
|
||||
Subproject commit 4949c2e3e82c8a88a783579aff120617c4ecfdab
|
2
CMUtil
2
CMUtil
@ -1 +1 @@
|
||||
Subproject commit f7dce0304822280d0db23ae607783b7c3cd183fa
|
||||
Subproject commit 57ff3a70c99265ed7bb97b3b6840709e84bac0c1
|
@ -28,7 +28,7 @@ private:
|
||||
|
||||
bool InitTextRenderable()
|
||||
{
|
||||
UTF16String str;
|
||||
U16String str;
|
||||
|
||||
LoadStringFromTextFile(str,OS_TEXT("res/text/DaoDeBible.txt"));
|
||||
|
||||
|
@ -22,6 +22,7 @@
|
||||
*/
|
||||
|
||||
#include"GizmoResource.h"
|
||||
#include<hgl/graph/SceneNode.h>
|
||||
#include<hgl/graph/VKRenderResource.h>
|
||||
#include<hgl/graph/InlineGeometry.h>
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
#include"GizmoResource.h"
|
||||
#include<hgl/graph/SceneNode.h>
|
||||
#include<hgl/graph/VKRenderResource.h>
|
||||
#include<hgl/graph/TransformFaceToCamera.h>
|
||||
|
||||
|
@ -22,6 +22,7 @@
|
||||
*/
|
||||
|
||||
#include"GizmoResource.h"
|
||||
#include<hgl/graph/SceneNode.h>
|
||||
#include<hgl/graph/VKRenderResource.h>
|
||||
#include<hgl/graph/InlineGeometry.h>
|
||||
|
||||
|
@ -8,6 +8,7 @@
|
||||
#include<hgl/graph/VKRenderResource.h>
|
||||
#include<hgl/color/Color.h>
|
||||
#include<hgl/graph/InlineGeometry.h>
|
||||
#include<hgl/graph/SceneNode.h>
|
||||
#include"GizmoResource.h"
|
||||
|
||||
VK_NAMESPACE_BEGIN
|
||||
|
@ -8,15 +8,48 @@ class RenderAssignBuffer;
|
||||
class SceneNode;
|
||||
struct CameraInfo;
|
||||
|
||||
struct RenderPipelineIndex:public Comparator<RenderPipelineIndex>
|
||||
{
|
||||
Material *material;
|
||||
Pipeline *pipeline;
|
||||
|
||||
public:
|
||||
|
||||
const int compare(const RenderPipelineIndex &rli)const override
|
||||
{
|
||||
if(material<rli.material)return(-1);
|
||||
if(material>rli.material)return(1);
|
||||
|
||||
if(pipeline<rli.pipeline)return(-1);
|
||||
if(pipeline>rli.pipeline)return(1);
|
||||
|
||||
return(0);
|
||||
}
|
||||
|
||||
public:
|
||||
|
||||
RenderPipelineIndex()
|
||||
{
|
||||
material=nullptr;
|
||||
pipeline=nullptr;
|
||||
}
|
||||
|
||||
RenderPipelineIndex(Material *m,Pipeline *p)
|
||||
{
|
||||
material=m;
|
||||
pipeline=p;
|
||||
}
|
||||
};//struct RenderPipelineIndex
|
||||
|
||||
/**
|
||||
* 同一材质的对象渲染列表
|
||||
* 同一材质与管线的渲染列表
|
||||
*/
|
||||
class MaterialRenderList
|
||||
{
|
||||
GPUDevice *device;
|
||||
RenderCmdBuffer *cmd_buf;
|
||||
|
||||
Material *material;
|
||||
RenderPipelineIndex rp_index;
|
||||
|
||||
CameraInfo *camera_info;
|
||||
|
||||
@ -33,7 +66,6 @@ private:
|
||||
uint32_t first_instance; ///<第一个绘制实例(和instance渲染无关,对应InstanceRate的VAB)
|
||||
uint32_t instance_count;
|
||||
|
||||
Pipeline * pipeline;
|
||||
MaterialInstance * mi;
|
||||
|
||||
const PrimitiveDataBuffer * pdb;
|
||||
@ -60,7 +92,6 @@ protected:
|
||||
|
||||
VABList * vab_list;
|
||||
|
||||
Pipeline * last_pipeline;
|
||||
const PrimitiveDataBuffer * last_data_buffer;
|
||||
const VDM * last_vdm;
|
||||
const PrimitiveRenderData * last_render_data;
|
||||
@ -75,20 +106,14 @@ protected:
|
||||
|
||||
public:
|
||||
|
||||
MaterialRenderList(GPUDevice *d,bool l2w,Material *m);
|
||||
MaterialRenderList(GPUDevice *d,bool l2w,const RenderPipelineIndex &rpi);
|
||||
~MaterialRenderList();
|
||||
|
||||
void Add(SceneNode *);
|
||||
|
||||
void SetCameraInfo(CameraInfo *ci)
|
||||
{
|
||||
camera_info=ci;
|
||||
}
|
||||
void SetCameraInfo(CameraInfo *ci){camera_info=ci;}
|
||||
|
||||
void Clear()
|
||||
{
|
||||
rn_list.Clear();
|
||||
}
|
||||
void Clear(){rn_list.Clear();}
|
||||
|
||||
void End();
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
#include<hgl/graph/MaterialRenderList.h>
|
||||
|
||||
VK_NAMESPACE_BEGIN
|
||||
class MaterialRenderMap:public ObjectMap<Material *,MaterialRenderList>
|
||||
class MaterialRenderMap:public ObjectMap<RenderPipelineIndex,MaterialRenderList>
|
||||
{
|
||||
public:
|
||||
|
||||
|
@ -11,7 +11,7 @@ namespace hgl
|
||||
class MaterialInstance;
|
||||
class SceneNode;
|
||||
|
||||
struct RenderNode
|
||||
struct RenderNode:public Comparator<RenderNode>
|
||||
{
|
||||
uint index; ///<在MaterialRenderList中的索引
|
||||
|
||||
@ -22,6 +22,11 @@ namespace hgl
|
||||
|
||||
Vector3f world_position;
|
||||
float to_camera_distance;
|
||||
|
||||
public:
|
||||
|
||||
//该函数位于MaterialRenderList.cpp
|
||||
const int compare(const RenderNode &)const override;
|
||||
};
|
||||
|
||||
using RenderNodeList=List<RenderNode>;
|
||||
@ -29,5 +34,10 @@ namespace hgl
|
||||
|
||||
using MaterialInstanceSets=SortedSet<MaterialInstance *>; ///<材质实例集合
|
||||
}//namespace graph
|
||||
|
||||
template<> inline const int ItemComparator<graph::RenderNode>::compare(const graph::RenderNode &a,const graph::RenderNode &b)
|
||||
{
|
||||
return a.compare(b);
|
||||
}
|
||||
}//namespace hgl
|
||||
#endif//HGL_GRAPH_RENDER_NODE_INCLUDE
|
||||
|
@ -10,7 +10,7 @@ namespace hgl
|
||||
namespace graph
|
||||
{
|
||||
using SceneNodeID =uint64;
|
||||
using SceneNodeName =UTF16IDName;
|
||||
using SceneNodeName =U16IDName;
|
||||
|
||||
/**
|
||||
* 场景节点数据类<br>
|
||||
@ -19,6 +19,8 @@ namespace hgl
|
||||
*/
|
||||
class SceneNode:public SceneOrient ///场景节点类
|
||||
{
|
||||
SceneNode *Owner; ///<上级节点
|
||||
|
||||
SceneNodeID NodeID; ///<节点ID
|
||||
SceneNodeName NodeName; ///<节点名称
|
||||
|
||||
@ -59,6 +61,8 @@ namespace hgl
|
||||
{
|
||||
SceneOrient::Clear();
|
||||
|
||||
Owner=nullptr;
|
||||
|
||||
BoundingBox.SetZero();
|
||||
LocalBoundingBox.SetZero();
|
||||
|
||||
@ -74,8 +78,13 @@ namespace hgl
|
||||
return(true);
|
||||
}
|
||||
|
||||
Renderable *GetRenderable(){return render_obj;}
|
||||
void SetOwner(SceneNode *sn) {Owner=sn;}
|
||||
SceneNode * GetOwner() noexcept{return Owner;}
|
||||
const SceneNode * GetOwner()const noexcept{return Owner;}
|
||||
|
||||
void SetRenderable(Renderable *);
|
||||
Renderable *GetRenderable() noexcept{return render_obj;}
|
||||
const Renderable *GetRenderable()const noexcept{return render_obj;}
|
||||
|
||||
SceneNode *Add(SceneNode *sn)
|
||||
{
|
||||
@ -83,6 +92,7 @@ namespace hgl
|
||||
return(nullptr);
|
||||
|
||||
ChildNode.Add(sn);
|
||||
sn->SetOwner(this);
|
||||
return sn;
|
||||
}
|
||||
|
||||
|
@ -1,12 +1,16 @@
|
||||
#ifndef HGL_VULKAN_DEVICE_RENDERPASS_MANAGE_INCLUDE
|
||||
#define HGL_VULKAN_DEVICE_RENDERPASS_MANAGE_INCLUDE
|
||||
#pragma once
|
||||
|
||||
#include<hgl/graph/VK.h>
|
||||
#include<hgl/type/Map.h>
|
||||
#include<hgl/util/hash/Hash.h>
|
||||
|
||||
VK_NAMESPACE_BEGIN
|
||||
using RenderPassHASHCode=util::HashCodeSHA1LE;
|
||||
|
||||
using RenderPassHASHCode=util::HashCode<128/8>;
|
||||
inline util::Hash *CreateRenderPassHash()
|
||||
{
|
||||
return util::CreateHash(util::HASH::xxH3_128);
|
||||
}
|
||||
|
||||
class DeviceRenderPassManage
|
||||
{
|
||||
@ -34,4 +38,3 @@ private:
|
||||
RenderPass * AcquireRenderPass( const RenderbufferInfo *,const uint subpass_count=2);
|
||||
};//class DeviceRenderPassManage
|
||||
VK_NAMESPACE_END
|
||||
#endif//HGL_VULKAN_DEVICE_RENDERPASS_MANAGE_INCLUDE
|
||||
|
@ -12,7 +12,7 @@ VK_NAMESPACE_BEGIN
|
||||
* 原始图元数据缓冲区<Br>
|
||||
* 提供在渲染之前的数据绑定信息
|
||||
*/
|
||||
struct PrimitiveDataBuffer
|
||||
struct PrimitiveDataBuffer:public Comparator<PrimitiveDataBuffer>
|
||||
{
|
||||
uint32_t vab_count;
|
||||
VkBuffer * vab_list;
|
||||
@ -32,14 +32,14 @@ public:
|
||||
PrimitiveDataBuffer(const uint32_t,IndexBuffer *,VertexDataManager *_v=nullptr);
|
||||
~PrimitiveDataBuffer();
|
||||
|
||||
const bool Comp(const PrimitiveDataBuffer *pdb)const;
|
||||
const int compare(const PrimitiveDataBuffer &pdb)const override;
|
||||
};//struct PrimitiveDataBuffer
|
||||
|
||||
/**
|
||||
* 原始图元渲染数据<Br>
|
||||
* 提供在渲染时的数据
|
||||
*/
|
||||
struct PrimitiveRenderData
|
||||
struct PrimitiveRenderData:public ComparatorData<PrimitiveRenderData>
|
||||
{
|
||||
//因为要VAB是流式访问,所以我们这个结构会被用做排序依据
|
||||
//也因此,把vertex_offset放在最前面
|
||||
@ -59,9 +59,6 @@ public:
|
||||
vertex_offset =vo;
|
||||
first_index =fi;
|
||||
}
|
||||
|
||||
CompOperatorMemcmp(const PrimitiveRenderData &);
|
||||
CompOperatorMemcmpPointer(PrimitiveRenderData);
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -12,7 +12,7 @@ namespace hgl
|
||||
/**
|
||||
* 字体信息
|
||||
*/
|
||||
struct Font
|
||||
struct Font:public ComparatorData<Font>
|
||||
{
|
||||
os_char name[MAX_FONT_NAME_LENGTH]; ///<字体名称
|
||||
|
||||
@ -28,8 +28,6 @@ namespace hgl
|
||||
|
||||
Font();
|
||||
Font(const os_char *,int,int,bool b=false,bool i=false,bool=true);
|
||||
|
||||
CompOperatorMemcmp(const Font &); ///<比较操作符重载
|
||||
};//struct Font
|
||||
}//namespace graph
|
||||
}//namespace hgl
|
||||
|
@ -100,8 +100,8 @@ namespace hgl
|
||||
|
||||
int draw_chars_count; ///<要绘制字符列表
|
||||
|
||||
SortedSet<u32char> chars_sets; ///<不重复字符统计缓冲区
|
||||
SortedSet<u32char> clear_chars_sets; ///<待清除的字符合集
|
||||
SortedSets<u32char> chars_sets; ///<不重复字符统计缓冲区
|
||||
SortedSets<u32char> clear_chars_sets; ///<待清除的字符合集
|
||||
TileUVFloatMap chars_uv; ///<所有要绘制字符的uv
|
||||
|
||||
struct CharDrawAttr
|
||||
|
@ -33,7 +33,7 @@ namespace hgl
|
||||
Color4f color;
|
||||
DeviceBuffer * ubo_color;
|
||||
|
||||
SortedSet<TextPrimitive *> tr_sets;
|
||||
SortedSets<TextPrimitive *> tr_sets;
|
||||
|
||||
private:
|
||||
|
||||
@ -54,9 +54,9 @@ namespace hgl
|
||||
public:
|
||||
|
||||
TextPrimitive *CreatePrimitive();
|
||||
TextPrimitive *CreatePrimitive(const UTF16String &str);
|
||||
TextPrimitive *CreatePrimitive(const U16String &str);
|
||||
|
||||
bool Layout(TextPrimitive *tr,const UTF16String &str);
|
||||
bool Layout(TextPrimitive *tr,const U16String &str);
|
||||
|
||||
Renderable *CreateRenderable(TextPrimitive *text_primitive);
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
#include<hgl/graph/VertexAttrib.h>
|
||||
|
||||
STD_MTL_NAMESPACE_BEGIN
|
||||
struct Material2DCreateConfig:public MaterialCreateConfig
|
||||
struct Material2DCreateConfig:public MaterialCreateConfig,public Comparator<Material2DCreateConfig>
|
||||
{
|
||||
CoordinateSystem2D coordinate_system; ///<使用的坐标系
|
||||
|
||||
@ -32,9 +32,9 @@ public:
|
||||
position_format=VAT_VEC2;
|
||||
}
|
||||
|
||||
int Comp(const Material2DCreateConfig &cfg)const
|
||||
const int compare(const Material2DCreateConfig &cfg)const override
|
||||
{
|
||||
int off=MaterialCreateConfig::Comp(cfg);
|
||||
int off=MaterialCreateConfig::compare(cfg);
|
||||
|
||||
if(off)return off;
|
||||
|
||||
@ -48,8 +48,6 @@ public:
|
||||
|
||||
return off;
|
||||
}
|
||||
|
||||
CompOperator(const Material2DCreateConfig &,Comp)
|
||||
};//struct Material2DCreateConfig:public MaterialCreateConfig
|
||||
|
||||
MaterialCreateInfo *CreateVertexColor2D(const Material2DCreateConfig *);
|
||||
|
@ -5,58 +5,8 @@
|
||||
#include<hgl/graph/VertexAttrib.h>
|
||||
|
||||
STD_MTL_NAMESPACE_BEGIN
|
||||
enum class LightingModel:uint8
|
||||
{
|
||||
Unlit,
|
||||
|
||||
Gizmo, ///<Gizmo专用(Blinnphong的特定版本,内置假的太阳光方向、高光系数等,使其不需要外部UBO传入)
|
||||
|
||||
Blinnphong, ///<Blinnphong光照模型
|
||||
|
||||
FakePBR, ///<假PBR(使用Blinnphong+HalfLambert模拟)
|
||||
MicroPBR, ///<微型PBR(只有BaseColor/Normal/Metallic/Roughness四个基础数据的PBR)
|
||||
|
||||
WebPBR, ///<Khronos为WebGL提供的PBR
|
||||
FilamentPBR, ///<Filament引擎所使用的PBR
|
||||
AMDPBR, ///<AMD Caulrdon框架所使用的PBR
|
||||
|
||||
BlenderPBR, ///<Blender所使用的PBR
|
||||
|
||||
ENUM_CLASS_RANGE(Unlit,BlenderPBR)
|
||||
};
|
||||
|
||||
constexpr const char *LightingModelName[]=
|
||||
{
|
||||
"Unlit",
|
||||
|
||||
"Gizmo",
|
||||
|
||||
"Blinnphong",
|
||||
|
||||
"FakePBR",
|
||||
"MicroPBR",
|
||||
|
||||
"WebPBR",
|
||||
"FilamentPBR",
|
||||
"AMDPBR",
|
||||
|
||||
"BlenderPBR"
|
||||
};
|
||||
|
||||
/**
|
||||
* 天光来源
|
||||
*/
|
||||
enum class SkyLightSource:uint8
|
||||
{
|
||||
PureColor, ///<纯色
|
||||
Simplest, ///<极简(一行代码)
|
||||
Cubemap, ///<立方体贴图
|
||||
IBL, ///<IBL立方体贴图
|
||||
|
||||
ENUM_CLASS_RANGE(PureColor,IBL)
|
||||
};
|
||||
|
||||
struct Material3DCreateConfig:public MaterialCreateConfig
|
||||
struct Material3DCreateConfig:public MaterialCreateConfig,public Comparator<Material3DCreateConfig>
|
||||
{
|
||||
bool camera; ///<包含摄像机矩阵信息
|
||||
|
||||
@ -82,9 +32,9 @@ public:
|
||||
// reverse_depth=false;
|
||||
}
|
||||
|
||||
int Comp(const Material3DCreateConfig &cfg)const
|
||||
const int compare(const Material3DCreateConfig &cfg)const override
|
||||
{
|
||||
int off=MaterialCreateConfig::Comp(cfg);
|
||||
int off=MaterialCreateConfig::compare(cfg);
|
||||
|
||||
if(off)return off;
|
||||
|
||||
@ -98,8 +48,6 @@ public:
|
||||
|
||||
return off;
|
||||
}
|
||||
|
||||
CompOperator(const Material3DCreateConfig &,Comp)
|
||||
};//struct Material3DCreateConfig:public MaterialCreateConfig
|
||||
|
||||
MaterialCreateInfo *CreateVertexColor3D(const Material3DCreateConfig *);
|
||||
|
@ -13,7 +13,7 @@ class MaterialCreateInfo;
|
||||
/**
|
||||
* 材质配置结构
|
||||
*/
|
||||
struct MaterialCreateConfig
|
||||
struct MaterialCreateConfig:public Comparator<MaterialCreateConfig>
|
||||
{
|
||||
const GPUDeviceAttribute *dev_attr;
|
||||
|
||||
@ -42,7 +42,7 @@ public:
|
||||
prim=p;
|
||||
}
|
||||
|
||||
virtual int Comp(const MaterialCreateConfig &cfg)const
|
||||
const int compare(const MaterialCreateConfig &cfg)const override
|
||||
{
|
||||
int off;
|
||||
|
||||
@ -59,8 +59,6 @@ public:
|
||||
|
||||
return off;
|
||||
}
|
||||
|
||||
CompOperator(const MaterialCreateConfig &,Comp)
|
||||
};//struct MaterialCreateConfig
|
||||
STD_MTL_NAMESPACE_END
|
||||
#endif//HGL_GRAPH_MTL_CONFIG_INCLUDE
|
||||
|
@ -6,12 +6,9 @@
|
||||
#include<hgl/graph/VKInterpolation.h>
|
||||
#include<hgl/graph/VKSamplerType.h>
|
||||
#include<hgl/graph/VKImageType.h>
|
||||
#include<hgl/CompOperator.h>
|
||||
#include<hgl/Comparator.h>
|
||||
|
||||
namespace hgl
|
||||
{
|
||||
namespace graph
|
||||
{
|
||||
VK_NAMESPACE_BEGIN
|
||||
enum class ShaderVariableBaseType:uint8
|
||||
{
|
||||
Scalar=0,
|
||||
@ -28,7 +25,7 @@ namespace hgl
|
||||
|
||||
#pragma pack(push,1)
|
||||
|
||||
struct ShaderVariableType
|
||||
struct ShaderVariableType:public Comparator<ShaderVariableType>
|
||||
{
|
||||
union
|
||||
{
|
||||
@ -156,91 +153,9 @@ namespace hgl
|
||||
array_size=count;
|
||||
}
|
||||
|
||||
const bool Check()const
|
||||
{
|
||||
if(!RangeCheck(base_type))return(false);
|
||||
const bool Check()const;
|
||||
|
||||
RANGE_CHECK_RETURN_FALSE(base_type)
|
||||
|
||||
if(base_type==SVBaseType::Scalar)
|
||||
return(true);
|
||||
|
||||
if(base_type==SVBaseType::Vector)
|
||||
{
|
||||
if(vector.vec_size<2||vector.vec_size>4)return(false);
|
||||
|
||||
return(true);
|
||||
}
|
||||
|
||||
if(base_type==SVBaseType::Matrix)
|
||||
{
|
||||
if(matrix.m==0)
|
||||
{
|
||||
if(matrix.n<2||matrix.n>4)return(false);
|
||||
}
|
||||
else
|
||||
{
|
||||
if(matrix.n<2||matrix.n>4)return(false);
|
||||
if(matrix.m<2||matrix.m>4)return(false);
|
||||
}
|
||||
|
||||
return(true);
|
||||
}
|
||||
|
||||
if(base_type==SVBaseType::Sampler)
|
||||
return RangeCheck(sampler.type);
|
||||
|
||||
if(base_type==SVBaseType::Image)
|
||||
return RangeCheck(image.type);
|
||||
|
||||
return(true);
|
||||
}
|
||||
|
||||
int Comp(const ShaderVariableType &svt)const
|
||||
{
|
||||
int off=(int)base_type-(int)svt.base_type;
|
||||
|
||||
if(off)return(off);
|
||||
|
||||
if(base_type==SVBaseType::Scalar)
|
||||
return int(scalar.type)-int(svt.scalar.type);
|
||||
|
||||
if(base_type==SVBaseType::Vector)
|
||||
{
|
||||
off=int(vector.type)-int(svt.vector.type);
|
||||
|
||||
if(off)return(off);
|
||||
|
||||
off=vector.vec_size-svt.vector.vec_size;
|
||||
|
||||
if(off)return(off);
|
||||
|
||||
return int(vector.type)-int(svt.vector.type);
|
||||
}
|
||||
|
||||
if(base_type==SVBaseType::Matrix)
|
||||
{
|
||||
off=int(matrix.type)-int(svt.matrix.type);
|
||||
|
||||
if(off)return(off);
|
||||
|
||||
off=matrix.n-svt.matrix.n;
|
||||
|
||||
if(off)return(off);
|
||||
|
||||
return matrix.m-svt.matrix.m;
|
||||
}
|
||||
|
||||
if(base_type==SVBaseType::Sampler)
|
||||
return int(sampler.type)-int(svt.sampler.type);
|
||||
|
||||
if(base_type==SVBaseType::Image)
|
||||
return int(image.type)-int(svt.image.type);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
CompOperator(const ShaderVariableType &,Comp)
|
||||
const int compare(const ShaderVariableType &svt)const override;
|
||||
|
||||
const char *GetTypename()const;
|
||||
|
||||
@ -254,29 +169,7 @@ namespace hgl
|
||||
return Check();
|
||||
}
|
||||
|
||||
const bool From(const VAType &vat,const uint16 count=1)
|
||||
{
|
||||
array_size=count;
|
||||
|
||||
if(vat.vec_size==1)
|
||||
{
|
||||
base_type=SVBaseType::Scalar;
|
||||
scalar.type=vat.basetype;
|
||||
|
||||
return(true);
|
||||
}
|
||||
else if(vat.vec_size<=4)
|
||||
{
|
||||
base_type=SVBaseType::Vector;
|
||||
|
||||
vector.type=vat.basetype;
|
||||
vector.vec_size=vat.vec_size;
|
||||
|
||||
return(true);
|
||||
}
|
||||
|
||||
return(false);
|
||||
}
|
||||
const bool From(const VAType &vat,const uint16 count=1);
|
||||
|
||||
static const ShaderVariableType Scalar(const VABaseType &vabt,const uint count=1)
|
||||
{
|
||||
@ -383,7 +276,7 @@ namespace hgl
|
||||
|
||||
using SVList=List<ShaderVariable>;
|
||||
|
||||
struct ShaderVariableArray
|
||||
struct ShaderVariableArray:public Comparator<ShaderVariableArray>
|
||||
{
|
||||
uint count;
|
||||
|
||||
@ -406,33 +299,30 @@ namespace hgl
|
||||
Clear();
|
||||
}
|
||||
|
||||
int Comp(const ShaderVariableArray *sva)const
|
||||
const int compare(const ShaderVariableArray &sva)const override
|
||||
{
|
||||
if(!sva)
|
||||
return 1;
|
||||
|
||||
int off=count-sva->count;
|
||||
int off=count-sva.count;
|
||||
if(off)return off;
|
||||
|
||||
for(uint i=0;i<count;i++)
|
||||
{
|
||||
off=items[i].location-sva->items[i].location;
|
||||
off=items[i].location-sva.items[i].location;
|
||||
if(off)
|
||||
return off;
|
||||
|
||||
if(items[i].type.ToCode()>sva->items[i].type.ToCode())
|
||||
if(items[i].type.ToCode()>sva.items[i].type.ToCode())
|
||||
return 1;
|
||||
|
||||
//ToCode返回的是uint64,可能差值超大,所以不能直接用-的结果
|
||||
|
||||
if(items[i].type.ToCode()<sva->items[i].type.ToCode())
|
||||
if(items[i].type.ToCode()<sva.items[i].type.ToCode())
|
||||
return -1;
|
||||
|
||||
off=int(items[i].interpolation)-int(sva->items[i].interpolation);
|
||||
off=int(items[i].interpolation)-int(sva.items[i].interpolation);
|
||||
if(off)
|
||||
return off;
|
||||
|
||||
off=hgl::strcmp(items[i].name,sva->items[i].name);
|
||||
off=hgl::strcmp(items[i].name,sva.items[i].name);
|
||||
if(off)
|
||||
return off;
|
||||
}
|
||||
@ -440,11 +330,6 @@ namespace hgl
|
||||
return 0;
|
||||
}
|
||||
|
||||
int Comp(const ShaderVariableArray &sva)const{return Comp(&sva);}
|
||||
|
||||
CompOperator(const ShaderVariableArray *,Comp)
|
||||
CompOperator(const ShaderVariableArray &,Comp)
|
||||
|
||||
bool Init(const uint c=0)
|
||||
{
|
||||
if(items)
|
||||
@ -552,5 +437,5 @@ namespace hgl
|
||||
};//struct ShaderVariableArray
|
||||
|
||||
using SVArray=ShaderVariableArray;
|
||||
}//namespace graph
|
||||
}//namespace hgl
|
||||
|
||||
VK_NAMESPACE_END
|
||||
|
@ -96,7 +96,7 @@ public:
|
||||
void SetMain(const AnsiString &str){main_function=str;}
|
||||
void SetMain(const char *str,const int len)
|
||||
{
|
||||
main_function.SetString(str,len);
|
||||
main_function.fromString(str,len);
|
||||
}
|
||||
|
||||
const AnsiString &GetOutputStruct()const{return output_struct;}
|
||||
|
@ -26,22 +26,13 @@
|
||||
这样就可以保证所有的渲染操作就算要切VBO,也不需要切换INDIRECT缓冲区,定位指令也很方便。
|
||||
*/
|
||||
|
||||
template<>
|
||||
int Comparator<hgl::graph::RenderNode>::compare(const hgl::graph::RenderNode &obj_one,const hgl::graph::RenderNode &obj_two) const
|
||||
VK_NAMESPACE_BEGIN
|
||||
const int RenderNode::compare(const RenderNode &other)const
|
||||
{
|
||||
hgl::int64 off;
|
||||
|
||||
hgl::graph::Renderable *ri_one=obj_one.scene_node->GetRenderable();
|
||||
hgl::graph::Renderable *ri_two=obj_two.scene_node->GetRenderable();
|
||||
|
||||
//比较管线
|
||||
{
|
||||
off=ri_one->GetPipeline()
|
||||
-ri_two->GetPipeline();
|
||||
|
||||
if(off)
|
||||
return off;
|
||||
}
|
||||
hgl::graph::Renderable *ri_one=other.scene_node->GetRenderable();
|
||||
hgl::graph::Renderable *ri_two=scene_node->GetRenderable();
|
||||
|
||||
auto *prim_one=ri_one->GetPrimitive();
|
||||
auto *prim_two=ri_two->GetPrimitive();
|
||||
@ -72,8 +63,8 @@ int Comparator<hgl::graph::RenderNode>::compare(const hgl::graph::RenderNode &ob
|
||||
|
||||
//比较距离。。。。。。。。。。。。。。。。。。。。。还不知道这个是正了还是反了,等测出来确认后修改下面的返回值和这里的注释
|
||||
|
||||
float foff=obj_one.to_camera_distance
|
||||
-obj_two.to_camera_distance;
|
||||
float foff=other.to_camera_distance
|
||||
-to_camera_distance;
|
||||
|
||||
if(foff>0)
|
||||
return 1;
|
||||
@ -81,18 +72,17 @@ int Comparator<hgl::graph::RenderNode>::compare(const hgl::graph::RenderNode &ob
|
||||
return -1;
|
||||
}
|
||||
|
||||
VK_NAMESPACE_BEGIN
|
||||
MaterialRenderList::MaterialRenderList(GPUDevice *d,bool l2w,Material *m)
|
||||
MaterialRenderList::MaterialRenderList(GPUDevice *d,bool l2w,const RenderPipelineIndex &rpi)
|
||||
{
|
||||
device=d;
|
||||
cmd_buf=nullptr;
|
||||
material=m;
|
||||
rp_index=rpi;
|
||||
|
||||
camera_info=nullptr;
|
||||
|
||||
assign_buffer=new RenderAssignBuffer(device,material);
|
||||
assign_buffer=new RenderAssignBuffer(device,rp_index.material);
|
||||
|
||||
vab_list=new VABList(material->GetVertexInput()->GetCount());
|
||||
vab_list=new VABList(rp_index.material->GetVertexInput()->GetCount());
|
||||
|
||||
icb_draw=nullptr;
|
||||
icb_draw_indexed=nullptr;
|
||||
@ -215,7 +205,6 @@ void MaterialRenderList::UpdateMaterialInstance(SceneNode *sn)
|
||||
|
||||
void MaterialRenderList::RenderItem::Set(Renderable *ri)
|
||||
{
|
||||
pipeline=ri->GetPipeline();
|
||||
mi =ri->GetMaterialInstance();
|
||||
pdb =ri->GetDataBuffer();
|
||||
prd =ri->GetRenderData();
|
||||
@ -248,6 +237,7 @@ void MaterialRenderList::WriteICB(VkDrawIndirectCommand *dicp,RenderItem *ri)
|
||||
dicp->firstVertex =ri->prd->vertex_offset;
|
||||
dicp->firstInstance =ri->first_instance;
|
||||
}
|
||||
|
||||
void MaterialRenderList::WriteICB(VkDrawIndexedIndirectCommand *diicp,RenderItem *ri)
|
||||
{
|
||||
diicp->indexCount =ri->prd->index_count;
|
||||
@ -279,7 +269,6 @@ void MaterialRenderList::Stat()
|
||||
ri->instance_count=1;
|
||||
ri->Set(ro);
|
||||
|
||||
last_pipeline =ri->pipeline;
|
||||
last_data_buffer=ri->pdb;
|
||||
last_vdm =ri->pdb->vdm;
|
||||
last_render_data=ri->prd;
|
||||
@ -290,9 +279,8 @@ void MaterialRenderList::Stat()
|
||||
{
|
||||
ro=rn->scene_node->GetRenderable();
|
||||
|
||||
if(last_pipeline==ro->GetPipeline())
|
||||
if(last_data_buffer->Comp(ro->GetDataBuffer()))
|
||||
if(last_render_data->_Comp(ro->GetRenderData())==0)
|
||||
if(*last_data_buffer!=*ro->GetDataBuffer())
|
||||
if(*last_render_data==*ro->GetRenderData())
|
||||
{
|
||||
++ri->instance_count;
|
||||
++rn;
|
||||
@ -317,7 +305,6 @@ void MaterialRenderList::Stat()
|
||||
ri->instance_count=1;
|
||||
ri->Set(ro);
|
||||
|
||||
last_pipeline =ri->pipeline;
|
||||
last_data_buffer=ri->pdb;
|
||||
last_vdm =ri->pdb->vdm;
|
||||
last_render_data=ri->prd;
|
||||
@ -411,17 +398,7 @@ void MaterialRenderList::ProcIndirectRender()
|
||||
|
||||
void MaterialRenderList::Render(RenderItem *ri)
|
||||
{
|
||||
if(last_pipeline!=ri->pipeline)
|
||||
{
|
||||
cmd_buf->BindPipeline(ri->pipeline);
|
||||
last_pipeline=ri->pipeline;
|
||||
|
||||
last_data_buffer=nullptr;
|
||||
|
||||
//这里未来尝试换pipeline同时不换mi/primitive是否需要重新绑定mi/primitive
|
||||
}
|
||||
|
||||
if(!ri->pdb->Comp(last_data_buffer)) //换buf了
|
||||
if(*(ri->pdb)!=*last_data_buffer) //换buf了
|
||||
{
|
||||
if(indirect_draw_count) //如果有间接绘制的数据,赶紧给画了
|
||||
ProcIndirectRender();
|
||||
@ -459,15 +436,16 @@ void MaterialRenderList::Render(RenderCmdBuffer *rcb)
|
||||
|
||||
cmd_buf=rcb;
|
||||
|
||||
last_pipeline =nullptr;
|
||||
cmd_buf->BindPipeline(rp_index.pipeline);
|
||||
|
||||
last_data_buffer=nullptr;
|
||||
last_vdm =nullptr;
|
||||
last_render_data=nullptr;
|
||||
|
||||
if(assign_buffer)
|
||||
assign_buffer->Bind(material);
|
||||
assign_buffer->Bind(rp_index.material);
|
||||
|
||||
cmd_buf->BindDescriptorSets(material);
|
||||
cmd_buf->BindDescriptorSets(rp_index.material);
|
||||
|
||||
RenderItem *ri=ri_array.GetData();
|
||||
for(uint i=0;i<ri_count;i++)
|
||||
|
@ -26,14 +26,15 @@ namespace hgl
|
||||
|
||||
if(ri)
|
||||
{
|
||||
Material *mtl=ri->GetMaterial();
|
||||
RenderPipelineIndex rpi(ri->GetMaterial(),ri->GetPipeline());
|
||||
|
||||
MaterialRenderList *mrl;
|
||||
|
||||
if(!mrl_map.Get(mtl,mrl))
|
||||
if(!mrl_map.Get(rpi,mrl))
|
||||
{
|
||||
mrl=new MaterialRenderList(device,true,mtl);
|
||||
mrl=new MaterialRenderList(device,true,rpi);
|
||||
|
||||
mrl_map.Add(mtl,mrl);
|
||||
mrl_map.Add(rpi,mrl);
|
||||
}
|
||||
|
||||
mrl->Add(sn);
|
||||
@ -92,10 +93,10 @@ namespace hgl
|
||||
|
||||
if(!ri)return;
|
||||
|
||||
Material *mtl=ri->GetMaterial();
|
||||
RenderPipelineIndex rli(ri->GetMaterial(),ri->GetPipeline());
|
||||
MaterialRenderList *mrl;
|
||||
|
||||
if(!mrl_map.Get(mtl,mrl)) //找到对应的
|
||||
if(!mrl_map.Get(rli,mrl)) //找到对应的
|
||||
return;
|
||||
|
||||
mrl->UpdateMaterialInstance(sn);
|
||||
|
@ -48,9 +48,9 @@ MaterialParameters *GPUDevice::CreateMP(const MaterialDescriptorManager *desc_ma
|
||||
if(!ds)return(nullptr);
|
||||
|
||||
#ifdef _DEBUG
|
||||
const UTF8String addr_string=HexToString<u8char,uint64_t>((uint64_t)(ds->GetDescriptorSet()));
|
||||
const U8String addr_string=HexToString<u8char,uint64_t>((uint64_t)(ds->GetDescriptorSet()));
|
||||
|
||||
LOG_INFO(U8_TEXT("Create [DescriptSets:")+addr_string+U8_TEXT("] OK! Material Name: \"")+(const UTF8String &)(desc_manager->GetMaterialName())+U8_TEXT("\" Type: ")+(u8char *)(GetDescriptorSetTypeName(desc_set_type)));
|
||||
LOG_INFO(U8_TEXT("Create [DescriptSets:")+addr_string+U8_TEXT("] OK! Material Name: \"")+(const U8String &)(desc_manager->GetMaterialName())+U8_TEXT("\" Type: ")+(u8char *)(GetDescriptorSetTypeName(desc_set_type)));
|
||||
#endif//_DEBUG
|
||||
|
||||
return(new MaterialParameters(desc_manager,desc_set_type,ds));
|
||||
|
@ -189,7 +189,7 @@ DeviceRenderPassManage::DeviceRenderPassManage(VkDevice dev,VkPipelineCache pc)
|
||||
device=dev;
|
||||
pipeline_cache=pc;
|
||||
|
||||
hash=util::CreateSHA1LEHash();
|
||||
hash=CreateRenderPassHash();
|
||||
}
|
||||
|
||||
DeviceRenderPassManage::~DeviceRenderPassManage()
|
||||
@ -251,7 +251,7 @@ namespace
|
||||
|
||||
void HashRenderPass(RenderPassHASHCode *code,const RenderbufferInfo *rbi,const uint8 subpass_count)
|
||||
{
|
||||
util::Hash *hash=util::CreateSHA1LEHash();
|
||||
util::Hash *hash=CreateRenderPassHash();
|
||||
|
||||
hash->Init();
|
||||
|
||||
|
@ -158,7 +158,7 @@ Texture2D *RenderResource::LoadTexture2D(const OSString &filename,bool auto_mipm
|
||||
|
||||
if(du)
|
||||
{
|
||||
const UTF8String name=U8_TEXT("Tex2D:")+ToUTF8String(filename);
|
||||
const U8String name=U8_TEXT("Tex2D:")+ToU8String(filename);
|
||||
|
||||
du->SetImage(tex->GetImage(),(char *)(name.c_str()));
|
||||
}
|
||||
|
@ -24,25 +24,29 @@ PrimitiveDataBuffer::~PrimitiveDataBuffer()
|
||||
delete[] vab_list;
|
||||
}
|
||||
|
||||
const bool PrimitiveDataBuffer::Comp(const PrimitiveDataBuffer *pdb)const
|
||||
const int PrimitiveDataBuffer::compare(const PrimitiveDataBuffer &pdb)const
|
||||
{
|
||||
if(!pdb)return(false);
|
||||
ptrdiff_t off;
|
||||
|
||||
if(vdm&&pdb->vdm)
|
||||
return (vdm==pdb->vdm);
|
||||
off=&vdm-&pdb.vdm;
|
||||
if(off)
|
||||
return off;
|
||||
|
||||
if(vab_count!=pdb->vab_count)return(false);
|
||||
off=vab_count-pdb.vab_count;
|
||||
if(off)
|
||||
return off;
|
||||
|
||||
for(uint32_t i=0;i<vab_count;i++)
|
||||
{
|
||||
if(vab_list[i]!=pdb->vab_list[i])return(false);
|
||||
if(vab_offset[i]!=pdb->vab_offset[i])return(false);
|
||||
}
|
||||
off=hgl_cmp(vab_list,pdb.vab_list,vab_count);
|
||||
if(off)
|
||||
return off;
|
||||
|
||||
if(ibo!=pdb->ibo)
|
||||
return(false);
|
||||
off=hgl_cmp(vab_offset,pdb.vab_offset,vab_count);
|
||||
if(off)
|
||||
return off;
|
||||
|
||||
return(true);
|
||||
off=ibo-pdb.ibo;
|
||||
|
||||
return off;
|
||||
}
|
||||
|
||||
Renderable::Renderable(Primitive *r,MaterialInstance *mi,Pipeline *p,PrimitiveDataBuffer *pdb,PrimitiveRenderData *prd)
|
||||
@ -61,7 +65,7 @@ Renderable *CreateRenderable(Primitive *prim,MaterialInstance *mi,Pipeline *p)
|
||||
|
||||
const VIL *vil=mi->GetVIL();
|
||||
|
||||
if(vil->Comp(p->GetVIL()))
|
||||
if(*vil!=*p->GetVIL())
|
||||
return(nullptr);
|
||||
|
||||
const uint32_t input_count=vil->GetVertexAttribCount(VertexInputGroup::Basic); //不统计Bone/LocalToWorld组的
|
||||
|
@ -35,7 +35,7 @@ const AnsiString *LoadShader(const AnsiString &shader_name)
|
||||
|
||||
shader=new AnsiString;
|
||||
|
||||
if(LoadStringFromTextFile((UTF8String &)*shader,os_fn)<=0)
|
||||
if(LoadStringFromTextFile((U8String &)*shader,os_fn)<=0)
|
||||
{
|
||||
delete shader;
|
||||
shader=nullptr;
|
||||
|
@ -45,6 +45,90 @@ namespace
|
||||
constexpr const char AtomicCounterTypename[]="atomic_uint";
|
||||
}//namespace
|
||||
|
||||
const bool ShaderVariableType::Check()const
|
||||
{
|
||||
if(!RangeCheck(base_type))return(false);
|
||||
|
||||
RANGE_CHECK_RETURN_FALSE(base_type)
|
||||
|
||||
if(base_type==SVBaseType::Scalar)
|
||||
return(true);
|
||||
|
||||
if(base_type==SVBaseType::Vector)
|
||||
{
|
||||
if(vector.vec_size<2||vector.vec_size>4)return(false);
|
||||
|
||||
return(true);
|
||||
}
|
||||
|
||||
if(base_type==SVBaseType::Matrix)
|
||||
{
|
||||
if(matrix.m==0)
|
||||
{
|
||||
if(matrix.n<2||matrix.n>4)return(false);
|
||||
}
|
||||
else
|
||||
{
|
||||
if(matrix.n<2||matrix.n>4)return(false);
|
||||
if(matrix.m<2||matrix.m>4)return(false);
|
||||
}
|
||||
|
||||
return(true);
|
||||
}
|
||||
|
||||
if(base_type==SVBaseType::Sampler)
|
||||
return RangeCheck(sampler.type);
|
||||
|
||||
if(base_type==SVBaseType::Image)
|
||||
return RangeCheck(image.type);
|
||||
|
||||
return(true);
|
||||
}
|
||||
|
||||
const int ShaderVariableType::compare(const ShaderVariableType &svt)const
|
||||
{
|
||||
int off=(int)base_type-(int)svt.base_type;
|
||||
|
||||
if(off)return(off);
|
||||
|
||||
if(base_type==SVBaseType::Scalar)
|
||||
return int(scalar.type)-int(svt.scalar.type);
|
||||
|
||||
if(base_type==SVBaseType::Vector)
|
||||
{
|
||||
off=int(vector.type)-int(svt.vector.type);
|
||||
|
||||
if(off)return(off);
|
||||
|
||||
off=vector.vec_size-svt.vector.vec_size;
|
||||
|
||||
if(off)return(off);
|
||||
|
||||
return int(vector.type)-int(svt.vector.type);
|
||||
}
|
||||
|
||||
if(base_type==SVBaseType::Matrix)
|
||||
{
|
||||
off=int(matrix.type)-int(svt.matrix.type);
|
||||
|
||||
if(off)return(off);
|
||||
|
||||
off=matrix.n-svt.matrix.n;
|
||||
|
||||
if(off)return(off);
|
||||
|
||||
return matrix.m-svt.matrix.m;
|
||||
}
|
||||
|
||||
if(base_type==SVBaseType::Sampler)
|
||||
return int(sampler.type)-int(svt.sampler.type);
|
||||
|
||||
if(base_type==SVBaseType::Image)
|
||||
return int(image.type)-int(svt.image.type);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
const char *ShaderVariableType::GetTypename()const
|
||||
{
|
||||
if(base_type==SVBaseType::Scalar)
|
||||
@ -268,4 +352,28 @@ bool ShaderVariableType::ParseTypeString(const char *str)
|
||||
|
||||
return(false);
|
||||
}
|
||||
|
||||
const bool ShaderVariableType::From(const VAType &vat,const uint16 count)
|
||||
{
|
||||
array_size=count;
|
||||
|
||||
if(vat.vec_size==1)
|
||||
{
|
||||
base_type=SVBaseType::Scalar;
|
||||
scalar.type=vat.basetype;
|
||||
|
||||
return(true);
|
||||
}
|
||||
else if(vat.vec_size<=4)
|
||||
{
|
||||
base_type=SVBaseType::Vector;
|
||||
|
||||
vector.type=vat.basetype;
|
||||
vector.vec_size=vat.vec_size;
|
||||
|
||||
return(true);
|
||||
}
|
||||
|
||||
return(false);
|
||||
}
|
||||
VK_NAMESPACE_END
|
||||
|
Loading…
x
Reference in New Issue
Block a user