2022-06-24 16:27:43 +08:00
|
|
|
|
// third_triangle
|
|
|
|
|
// 该范例主要演示使用2D坐系统直接绘制一个渐变色的三角形
|
2020-12-02 20:27:36 +08:00
|
|
|
|
|
|
|
|
|
#include"VulkanAppFramework.h"
|
|
|
|
|
#include<hgl/math/Math.h>
|
|
|
|
|
#include<hgl/filesystem/FileSystem.h>
|
2022-06-24 16:27:43 +08:00
|
|
|
|
#include<hgl/graph/SceneInfo.h>
|
2020-12-02 20:27:36 +08:00
|
|
|
|
|
|
|
|
|
using namespace hgl;
|
|
|
|
|
using namespace hgl::graph;
|
|
|
|
|
|
|
|
|
|
constexpr uint32_t SCREEN_WIDTH=1280;
|
|
|
|
|
constexpr uint32_t SCREEN_HEIGHT=720;
|
|
|
|
|
|
|
|
|
|
constexpr uint32_t VERTEX_COUNT=3;
|
|
|
|
|
|
2022-02-22 20:53:39 +08:00
|
|
|
|
constexpr float position_data[VERTEX_COUNT][2]=
|
2020-12-02 20:27:36 +08:00
|
|
|
|
{
|
|
|
|
|
{SCREEN_WIDTH*0.5, SCREEN_HEIGHT*0.25},
|
|
|
|
|
{SCREEN_WIDTH*0.75, SCREEN_HEIGHT*0.75},
|
|
|
|
|
{SCREEN_WIDTH*0.25, SCREEN_HEIGHT*0.75}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
constexpr float color_data[VERTEX_COUNT][4]=
|
2022-10-14 17:52:35 +08:00
|
|
|
|
{
|
|
|
|
|
{1,0,0,1},
|
2020-12-02 20:27:36 +08:00
|
|
|
|
{0,1,0,1},
|
|
|
|
|
{0,0,1,1}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class TestApp:public VulkanApplicationFramework
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
|
2021-06-16 21:03:52 +08:00
|
|
|
|
MaterialInstance * material_instance =nullptr;
|
2022-06-24 21:17:28 +08:00
|
|
|
|
Renderable * render_obj =nullptr;
|
2020-12-02 20:27:36 +08:00
|
|
|
|
|
|
|
|
|
Pipeline * pipeline =nullptr;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
bool InitMaterial()
|
|
|
|
|
{
|
|
|
|
|
material_instance=db->CreateMaterialInstance(OS_TEXT("res/material/VertexColor2D"));
|
|
|
|
|
|
|
|
|
|
if(!material_instance)
|
|
|
|
|
return(false);
|
2022-03-09 20:55:09 +08:00
|
|
|
|
|
|
|
|
|
BindCameraUBO(material_instance);
|
2020-12-02 20:27:36 +08:00
|
|
|
|
|
2021-09-22 17:22:17 +08:00
|
|
|
|
// pipeline=db->CreatePipeline(material_instance,sc_render_target,OS_TEXT("res/pipeline/solid2d"));
|
|
|
|
|
pipeline=CreatePipeline(material_instance,InlinePipeline::Solid2D,Prim::Triangles); //等同上一行,为Framework重载,默认使用swapchain的render target
|
2022-06-24 16:27:43 +08:00
|
|
|
|
|
2021-09-22 17:22:17 +08:00
|
|
|
|
return pipeline;
|
2020-12-02 20:27:36 +08:00
|
|
|
|
}
|
2022-06-24 16:27:43 +08:00
|
|
|
|
|
2020-12-02 20:27:36 +08:00
|
|
|
|
bool InitVBO()
|
|
|
|
|
{
|
2022-06-24 18:00:22 +08:00
|
|
|
|
Primitive *primitive=db->CreatePrimitive(VERTEX_COUNT);
|
|
|
|
|
if(!primitive)return(false);
|
2020-12-02 20:27:36 +08:00
|
|
|
|
|
2022-10-12 16:30:15 +08:00
|
|
|
|
if(!primitive->Set(VAN::Position, db->CreateVBO(VF_V2F,VERTEX_COUNT,position_data )))return(false);
|
2022-10-28 17:57:09 +08:00
|
|
|
|
if(!primitive->Set(VAN::Color, db->CreateVBO(VF_V4F,VERTEX_COUNT,color_data )))return(false);
|
2020-12-02 20:27:36 +08:00
|
|
|
|
|
2022-06-24 21:17:28 +08:00
|
|
|
|
render_obj=db->CreateRenderable(primitive,material_instance,pipeline);
|
2020-12-02 20:27:36 +08:00
|
|
|
|
return(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
bool Init()
|
|
|
|
|
{
|
|
|
|
|
if(!VulkanApplicationFramework::Init(SCREEN_WIDTH,SCREEN_HEIGHT))
|
|
|
|
|
return(false);
|
|
|
|
|
|
|
|
|
|
if(!InitMaterial())
|
|
|
|
|
return(false);
|
|
|
|
|
|
|
|
|
|
if(!InitVBO())
|
|
|
|
|
return(false);
|
|
|
|
|
|
2022-06-24 21:17:28 +08:00
|
|
|
|
if(!BuildCommandBuffer(render_obj))
|
2022-06-24 16:27:43 +08:00
|
|
|
|
return(false);
|
2020-12-02 20:27:36 +08:00
|
|
|
|
|
|
|
|
|
return(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Resize(int w,int h)override
|
|
|
|
|
{
|
2022-03-09 20:55:09 +08:00
|
|
|
|
VulkanApplicationFramework::Resize(w,h);
|
2020-12-02 20:27:36 +08:00
|
|
|
|
|
2022-06-24 21:17:28 +08:00
|
|
|
|
BuildCommandBuffer(render_obj);
|
2020-12-02 20:27:36 +08:00
|
|
|
|
}
|
|
|
|
|
};//class TestApp:public VulkanApplicationFramework
|
|
|
|
|
|
|
|
|
|
int main(int,char **)
|
|
|
|
|
{
|
|
|
|
|
TestApp app;
|
|
|
|
|
|
|
|
|
|
if(!app.Init())
|
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
|
|
while(app.Run());
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|