2012-09-17 04:36:08 +04:00
|
|
|
/*
|
2020-01-15 08:37:06 +03:00
|
|
|
* Copyright 2011-2020 Branimir Karadzic. All rights reserved.
|
2016-01-01 11:11:04 +03:00
|
|
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
2012-09-17 04:36:08 +04:00
|
|
|
*/
|
|
|
|
|
2013-05-24 09:07:54 +04:00
|
|
|
#include "common.h"
|
2014-05-04 02:18:28 +04:00
|
|
|
#include "bgfx_utils.h"
|
2017-06-26 07:44:04 +03:00
|
|
|
#include "imgui/imgui.h"
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2012-09-17 04:36:08 +04:00
|
|
|
|
|
|
|
struct PosColorVertex
|
|
|
|
{
|
|
|
|
float m_x;
|
|
|
|
float m_y;
|
|
|
|
float m_z;
|
|
|
|
uint32_t m_abgr;
|
2014-05-04 02:18:28 +04:00
|
|
|
|
|
|
|
static void init()
|
|
|
|
{
|
2019-08-17 20:35:21 +03:00
|
|
|
ms_layout
|
2014-05-11 07:51:44 +04:00
|
|
|
.begin()
|
|
|
|
.add(bgfx::Attrib::Position, 3, bgfx::AttribType::Float)
|
|
|
|
.add(bgfx::Attrib::Color0, 4, bgfx::AttribType::Uint8, true)
|
|
|
|
.end();
|
2014-05-04 02:18:28 +04:00
|
|
|
};
|
|
|
|
|
2019-08-17 20:35:21 +03:00
|
|
|
static bgfx::VertexLayout ms_layout;
|
2012-09-17 04:36:08 +04:00
|
|
|
};
|
|
|
|
|
2019-08-17 20:35:21 +03:00
|
|
|
bgfx::VertexLayout PosColorVertex::ms_layout;
|
2012-10-08 07:41:18 +04:00
|
|
|
|
2016-11-27 09:38:47 +03:00
|
|
|
static PosColorVertex s_cubeVertices[] =
|
2012-09-17 04:36:08 +04:00
|
|
|
{
|
|
|
|
{-1.0f, 1.0f, 1.0f, 0xff000000 },
|
|
|
|
{ 1.0f, 1.0f, 1.0f, 0xff0000ff },
|
|
|
|
{-1.0f, -1.0f, 1.0f, 0xff00ff00 },
|
|
|
|
{ 1.0f, -1.0f, 1.0f, 0xff00ffff },
|
|
|
|
{-1.0f, 1.0f, -1.0f, 0xffff0000 },
|
|
|
|
{ 1.0f, 1.0f, -1.0f, 0xffff00ff },
|
|
|
|
{-1.0f, -1.0f, -1.0f, 0xffffff00 },
|
|
|
|
{ 1.0f, -1.0f, -1.0f, 0xffffffff },
|
|
|
|
};
|
|
|
|
|
2016-11-27 09:38:47 +03:00
|
|
|
static const uint16_t s_cubeTriList[] =
|
2012-09-17 04:36:08 +04:00
|
|
|
{
|
2013-02-22 10:05:33 +04:00
|
|
|
0, 1, 2, // 0
|
|
|
|
1, 3, 2,
|
|
|
|
4, 6, 5, // 2
|
|
|
|
5, 6, 7,
|
|
|
|
0, 2, 4, // 4
|
|
|
|
4, 2, 6,
|
|
|
|
1, 5, 3, // 6
|
|
|
|
5, 7, 3,
|
|
|
|
0, 4, 1, // 8
|
|
|
|
4, 5, 1,
|
|
|
|
2, 3, 6, // 10
|
|
|
|
6, 3, 7,
|
2012-09-17 04:36:08 +04:00
|
|
|
};
|
|
|
|
|
2016-11-27 09:38:47 +03:00
|
|
|
static const uint16_t s_cubeTriStrip[] =
|
|
|
|
{
|
|
|
|
0, 1, 2,
|
|
|
|
3,
|
|
|
|
7,
|
|
|
|
1,
|
|
|
|
5,
|
|
|
|
0,
|
|
|
|
4,
|
|
|
|
2,
|
|
|
|
6,
|
|
|
|
7,
|
|
|
|
4,
|
|
|
|
5,
|
|
|
|
};
|
|
|
|
|
2018-06-08 07:23:09 +03:00
|
|
|
static const uint16_t s_cubeLineList[] =
|
|
|
|
{
|
|
|
|
0, 1,
|
|
|
|
0, 2,
|
|
|
|
0, 4,
|
|
|
|
1, 3,
|
|
|
|
1, 5,
|
|
|
|
2, 3,
|
|
|
|
2, 6,
|
|
|
|
3, 7,
|
|
|
|
4, 5,
|
|
|
|
4, 6,
|
|
|
|
5, 7,
|
|
|
|
6, 7,
|
|
|
|
};
|
|
|
|
|
2018-10-08 20:10:40 +03:00
|
|
|
static const uint16_t s_cubeLineStrip[] =
|
|
|
|
{
|
|
|
|
0, 2, 3, 1, 5, 7, 6, 4,
|
|
|
|
0, 2, 6, 4, 5, 7, 3, 1,
|
|
|
|
0,
|
|
|
|
};
|
|
|
|
|
2018-06-08 07:23:09 +03:00
|
|
|
static const uint16_t s_cubePoints[] =
|
|
|
|
{
|
|
|
|
0, 1, 2, 3, 4, 5, 6, 7
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char* s_ptNames[]
|
|
|
|
{
|
|
|
|
"Triangle List",
|
|
|
|
"Triangle Strip",
|
|
|
|
"Lines",
|
2018-10-08 20:10:40 +03:00
|
|
|
"Line Strip",
|
2018-06-08 07:23:09 +03:00
|
|
|
"Points",
|
|
|
|
};
|
|
|
|
|
|
|
|
static const uint64_t s_ptState[]
|
|
|
|
{
|
|
|
|
UINT64_C(0),
|
2018-10-02 17:59:56 +03:00
|
|
|
BGFX_STATE_PT_TRISTRIP,
|
2018-06-08 07:23:09 +03:00
|
|
|
BGFX_STATE_PT_LINES,
|
2018-10-08 20:10:40 +03:00
|
|
|
BGFX_STATE_PT_LINESTRIP,
|
2018-06-08 07:23:09 +03:00
|
|
|
BGFX_STATE_PT_POINTS,
|
|
|
|
};
|
2018-10-08 20:10:40 +03:00
|
|
|
BX_STATIC_ASSERT(BX_COUNTOF(s_ptState) == BX_COUNTOF(s_ptNames) );
|
2018-06-08 07:23:09 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
class ExampleCubes : public entry::AppI
|
2012-09-17 04:36:08 +04:00
|
|
|
{
|
2017-06-26 07:44:04 +03:00
|
|
|
public:
|
2019-08-15 07:19:49 +03:00
|
|
|
ExampleCubes(const char* _name, const char* _description, const char* _url)
|
|
|
|
: entry::AppI(_name, _description, _url)
|
2018-06-09 02:53:35 +03:00
|
|
|
, m_pt(0)
|
2018-02-13 23:35:23 +03:00
|
|
|
, m_r(true)
|
|
|
|
, m_g(true)
|
|
|
|
, m_b(true)
|
|
|
|
, m_a(true)
|
2017-06-26 07:44:04 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-07-15 10:17:29 +03:00
|
|
|
void init(int32_t _argc, const char* const* _argv, uint32_t _width, uint32_t _height) override
|
2013-02-22 09:07:31 +04:00
|
|
|
{
|
2015-10-24 06:52:22 +03:00
|
|
|
Args args(_argc, _argv);
|
2016-04-06 05:33:05 +03:00
|
|
|
|
2017-06-30 08:23:18 +03:00
|
|
|
m_width = _width;
|
|
|
|
m_height = _height;
|
2017-06-26 07:44:04 +03:00
|
|
|
m_debug = BGFX_DEBUG_NONE;
|
2015-08-22 06:08:03 +03:00
|
|
|
m_reset = BGFX_RESET_VSYNC;
|
|
|
|
|
2018-04-18 01:42:18 +03:00
|
|
|
bgfx::Init init;
|
|
|
|
init.type = args.m_type;
|
|
|
|
init.vendorId = args.m_pciId;
|
|
|
|
init.resolution.width = m_width;
|
|
|
|
init.resolution.height = m_height;
|
|
|
|
init.resolution.reset = m_reset;
|
|
|
|
bgfx::init(init);
|
2015-08-22 06:08:03 +03:00
|
|
|
|
|
|
|
// Enable debug text.
|
|
|
|
bgfx::setDebug(m_debug);
|
|
|
|
|
|
|
|
// Set view 0 clear state.
|
|
|
|
bgfx::setViewClear(0
|
2018-06-08 07:23:09 +03:00
|
|
|
, BGFX_CLEAR_COLOR|BGFX_CLEAR_DEPTH
|
|
|
|
, 0x303030ff
|
|
|
|
, 1.0f
|
|
|
|
, 0
|
|
|
|
);
|
2015-08-22 06:08:03 +03:00
|
|
|
|
|
|
|
// Create vertex stream declaration.
|
|
|
|
PosColorVertex::init();
|
|
|
|
|
|
|
|
// Create static vertex buffer.
|
2017-05-14 21:48:59 +03:00
|
|
|
m_vbh = bgfx::createVertexBuffer(
|
2018-06-08 07:23:09 +03:00
|
|
|
// Static data can be passed with bgfx::makeRef
|
|
|
|
bgfx::makeRef(s_cubeVertices, sizeof(s_cubeVertices) )
|
2019-08-17 20:35:21 +03:00
|
|
|
, PosColorVertex::ms_layout
|
2018-06-08 07:23:09 +03:00
|
|
|
);
|
|
|
|
|
2018-10-08 20:10:40 +03:00
|
|
|
// Create static index buffer for triangle list rendering.
|
2018-06-08 07:23:09 +03:00
|
|
|
m_ibh[0] = bgfx::createIndexBuffer(
|
|
|
|
// Static data can be passed with bgfx::makeRef
|
2018-10-02 17:59:56 +03:00
|
|
|
bgfx::makeRef(s_cubeTriList, sizeof(s_cubeTriList) )
|
2018-06-08 07:23:09 +03:00
|
|
|
);
|
|
|
|
|
2018-10-08 20:10:40 +03:00
|
|
|
// Create static index buffer for triangle strip rendering.
|
2018-06-08 07:23:09 +03:00
|
|
|
m_ibh[1] = bgfx::createIndexBuffer(
|
|
|
|
// Static data can be passed with bgfx::makeRef
|
2018-10-02 17:59:56 +03:00
|
|
|
bgfx::makeRef(s_cubeTriStrip, sizeof(s_cubeTriStrip) )
|
2018-06-08 07:23:09 +03:00
|
|
|
);
|
|
|
|
|
2018-10-08 20:10:40 +03:00
|
|
|
// Create static index buffer for line list rendering.
|
2018-06-08 07:23:09 +03:00
|
|
|
m_ibh[2] = bgfx::createIndexBuffer(
|
|
|
|
// Static data can be passed with bgfx::makeRef
|
|
|
|
bgfx::makeRef(s_cubeLineList, sizeof(s_cubeLineList) )
|
|
|
|
);
|
|
|
|
|
2018-10-08 20:10:40 +03:00
|
|
|
// Create static index buffer for line strip rendering.
|
2018-06-08 07:23:09 +03:00
|
|
|
m_ibh[3] = bgfx::createIndexBuffer(
|
2018-10-08 20:10:40 +03:00
|
|
|
// Static data can be passed with bgfx::makeRef
|
|
|
|
bgfx::makeRef(s_cubeLineStrip, sizeof(s_cubeLineStrip) )
|
|
|
|
);
|
|
|
|
|
|
|
|
// Create static index buffer for point list rendering.
|
|
|
|
m_ibh[4] = bgfx::createIndexBuffer(
|
2018-06-08 07:23:09 +03:00
|
|
|
// Static data can be passed with bgfx::makeRef
|
|
|
|
bgfx::makeRef(s_cubePoints, sizeof(s_cubePoints) )
|
|
|
|
);
|
2015-08-22 06:08:03 +03:00
|
|
|
|
|
|
|
// Create program from shaders.
|
|
|
|
m_program = loadProgram("vs_cubes", "fs_cubes");
|
|
|
|
|
|
|
|
m_timeOffset = bx::getHPCounter();
|
2017-06-26 07:44:04 +03:00
|
|
|
|
|
|
|
imguiCreate();
|
2015-08-22 06:08:03 +03:00
|
|
|
}
|
2014-11-02 10:06:18 +03:00
|
|
|
|
2017-07-15 10:17:29 +03:00
|
|
|
virtual int shutdown() override
|
2015-08-22 06:08:03 +03:00
|
|
|
{
|
2017-06-26 07:44:04 +03:00
|
|
|
imguiDestroy();
|
|
|
|
|
2015-08-22 06:08:03 +03:00
|
|
|
// Cleanup.
|
2018-06-08 07:23:09 +03:00
|
|
|
for (uint32_t ii = 0; ii < BX_COUNTOF(m_ibh); ++ii)
|
|
|
|
{
|
|
|
|
bgfx::destroy(m_ibh[ii]);
|
|
|
|
}
|
|
|
|
|
2017-07-18 08:29:43 +03:00
|
|
|
bgfx::destroy(m_vbh);
|
|
|
|
bgfx::destroy(m_program);
|
2014-11-02 10:06:18 +03:00
|
|
|
|
2015-08-22 06:08:03 +03:00
|
|
|
// Shutdown bgfx.
|
|
|
|
bgfx::shutdown();
|
2014-10-29 08:08:55 +03:00
|
|
|
|
2015-08-22 06:08:03 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2014-11-02 10:06:18 +03:00
|
|
|
|
2017-07-15 10:17:29 +03:00
|
|
|
bool update() override
|
2015-08-22 06:08:03 +03:00
|
|
|
{
|
2017-06-26 07:44:04 +03:00
|
|
|
if (!entry::processEvents(m_width, m_height, m_debug, m_reset, &m_mouseState) )
|
2015-08-22 06:08:03 +03:00
|
|
|
{
|
2017-06-26 07:44:04 +03:00
|
|
|
imguiBeginFrame(m_mouseState.m_mx
|
|
|
|
, m_mouseState.m_my
|
|
|
|
, (m_mouseState.m_buttons[entry::MouseButton::Left ] ? IMGUI_MBUT_LEFT : 0)
|
|
|
|
| (m_mouseState.m_buttons[entry::MouseButton::Right ] ? IMGUI_MBUT_RIGHT : 0)
|
|
|
|
| (m_mouseState.m_buttons[entry::MouseButton::Middle] ? IMGUI_MBUT_MIDDLE : 0)
|
|
|
|
, m_mouseState.m_mz
|
|
|
|
, uint16_t(m_width)
|
|
|
|
, uint16_t(m_height)
|
|
|
|
);
|
|
|
|
|
2017-06-30 09:19:20 +03:00
|
|
|
showExampleDialog(this);
|
2015-08-22 06:08:03 +03:00
|
|
|
|
2018-02-13 23:35:23 +03:00
|
|
|
ImGui::SetNextWindowPos(
|
|
|
|
ImVec2(m_width - m_width / 5.0f - 10.0f, 10.0f)
|
|
|
|
, ImGuiCond_FirstUseEver
|
|
|
|
);
|
|
|
|
ImGui::SetNextWindowSize(
|
2018-06-08 07:23:09 +03:00
|
|
|
ImVec2(m_width / 5.0f, m_height / 3.5f)
|
2018-02-13 23:35:23 +03:00
|
|
|
, ImGuiCond_FirstUseEver
|
|
|
|
);
|
|
|
|
ImGui::Begin("Settings"
|
|
|
|
, NULL
|
|
|
|
, 0
|
|
|
|
);
|
|
|
|
|
|
|
|
ImGui::Checkbox("Write R", &m_r);
|
|
|
|
ImGui::Checkbox("Write G", &m_g);
|
|
|
|
ImGui::Checkbox("Write B", &m_b);
|
|
|
|
ImGui::Checkbox("Write A", &m_a);
|
|
|
|
|
2018-06-08 07:23:09 +03:00
|
|
|
ImGui::Text("Primitive topology:");
|
|
|
|
ImGui::Combo("", (int*)&m_pt, s_ptNames, BX_COUNTOF(s_ptNames) );
|
|
|
|
|
2018-02-13 23:35:23 +03:00
|
|
|
ImGui::End();
|
|
|
|
|
2017-06-26 07:44:04 +03:00
|
|
|
imguiEndFrame();
|
2015-08-22 06:08:03 +03:00
|
|
|
|
2017-06-26 07:44:04 +03:00
|
|
|
float time = (float)( (bx::getHPCounter()-m_timeOffset)/double(bx::getHPFrequency() ) );
|
2015-08-22 06:08:03 +03:00
|
|
|
|
2018-11-17 08:54:20 +03:00
|
|
|
const bx::Vec3 at = { 0.0f, 0.0f, 0.0f };
|
|
|
|
const bx::Vec3 eye = { 0.0f, 0.0f, -35.0f };
|
2015-08-22 06:08:03 +03:00
|
|
|
|
|
|
|
// Set view and projection matrix for view 0.
|
2012-09-17 04:36:08 +04:00
|
|
|
{
|
2015-08-22 06:08:03 +03:00
|
|
|
float view[16];
|
|
|
|
bx::mtxLookAt(view, eye, at);
|
2012-09-17 04:36:08 +04:00
|
|
|
|
2015-08-22 06:08:03 +03:00
|
|
|
float proj[16];
|
2017-02-23 09:17:44 +03:00
|
|
|
bx::mtxProj(proj, 60.0f, float(m_width)/float(m_height), 0.1f, 100.0f, bgfx::getCaps()->homogeneousDepth);
|
2015-08-22 06:08:03 +03:00
|
|
|
bgfx::setViewTransform(0, view, proj);
|
2012-09-17 04:36:08 +04:00
|
|
|
|
2015-08-22 06:08:03 +03:00
|
|
|
// Set view 0 default viewport.
|
2016-05-07 07:29:47 +03:00
|
|
|
bgfx::setViewRect(0, 0, 0, uint16_t(m_width), uint16_t(m_height) );
|
2015-08-22 06:08:03 +03:00
|
|
|
}
|
2012-09-17 04:36:08 +04:00
|
|
|
|
2015-08-22 06:08:03 +03:00
|
|
|
// This dummy draw call is here to make sure that view 0 is cleared
|
|
|
|
// if no other draw calls are submitted to view 0.
|
|
|
|
bgfx::touch(0);
|
2012-09-17 04:36:08 +04:00
|
|
|
|
2018-06-08 07:23:09 +03:00
|
|
|
bgfx::IndexBufferHandle ibh = m_ibh[m_pt];
|
|
|
|
uint64_t state = 0
|
|
|
|
| (m_r ? BGFX_STATE_WRITE_R : 0)
|
|
|
|
| (m_g ? BGFX_STATE_WRITE_G : 0)
|
|
|
|
| (m_b ? BGFX_STATE_WRITE_B : 0)
|
|
|
|
| (m_a ? BGFX_STATE_WRITE_A : 0)
|
|
|
|
| BGFX_STATE_WRITE_Z
|
|
|
|
| BGFX_STATE_DEPTH_TEST_LESS
|
|
|
|
| BGFX_STATE_CULL_CW
|
|
|
|
| BGFX_STATE_MSAA
|
|
|
|
| s_ptState[m_pt]
|
|
|
|
;
|
|
|
|
|
2015-08-22 06:08:03 +03:00
|
|
|
// Submit 11x11 cubes.
|
|
|
|
for (uint32_t yy = 0; yy < 11; ++yy)
|
|
|
|
{
|
|
|
|
for (uint32_t xx = 0; xx < 11; ++xx)
|
|
|
|
{
|
|
|
|
float mtx[16];
|
|
|
|
bx::mtxRotateXY(mtx, time + xx*0.21f, time + yy*0.37f);
|
|
|
|
mtx[12] = -15.0f + float(xx)*3.0f;
|
|
|
|
mtx[13] = -15.0f + float(yy)*3.0f;
|
|
|
|
mtx[14] = 0.0f;
|
|
|
|
|
|
|
|
// Set model matrix for rendering.
|
|
|
|
bgfx::setTransform(mtx);
|
|
|
|
|
|
|
|
// Set vertex and index buffer.
|
2017-05-14 21:48:59 +03:00
|
|
|
bgfx::setVertexBuffer(0, m_vbh);
|
2018-06-08 07:23:09 +03:00
|
|
|
bgfx::setIndexBuffer(ibh);
|
2015-08-22 06:08:03 +03:00
|
|
|
|
|
|
|
// Set render states.
|
2018-06-08 07:23:09 +03:00
|
|
|
bgfx::setState(state);
|
2015-08-22 06:08:03 +03:00
|
|
|
|
|
|
|
// Submit primitive for rendering to view 0.
|
|
|
|
bgfx::submit(0, m_program);
|
|
|
|
}
|
2012-09-17 04:36:08 +04:00
|
|
|
}
|
2015-08-22 06:08:03 +03:00
|
|
|
|
|
|
|
// Advance to next frame. Rendering thread will be kicked to
|
|
|
|
// process submitted rendering primitives.
|
|
|
|
bgfx::frame();
|
|
|
|
|
2017-06-30 09:19:20 +03:00
|
|
|
return true;
|
2012-09-17 04:36:08 +04:00
|
|
|
}
|
|
|
|
|
2015-08-22 06:08:03 +03:00
|
|
|
return false;
|
2012-09-17 04:36:08 +04:00
|
|
|
}
|
|
|
|
|
2017-06-26 07:44:04 +03:00
|
|
|
entry::MouseState m_mouseState;
|
|
|
|
|
2015-08-22 06:08:03 +03:00
|
|
|
uint32_t m_width;
|
|
|
|
uint32_t m_height;
|
|
|
|
uint32_t m_debug;
|
|
|
|
uint32_t m_reset;
|
2017-05-14 21:48:59 +03:00
|
|
|
bgfx::VertexBufferHandle m_vbh;
|
2018-10-08 20:10:40 +03:00
|
|
|
bgfx::IndexBufferHandle m_ibh[BX_COUNTOF(s_ptState)];
|
2015-08-22 06:08:03 +03:00
|
|
|
bgfx::ProgramHandle m_program;
|
|
|
|
int64_t m_timeOffset;
|
2018-06-08 07:23:09 +03:00
|
|
|
int32_t m_pt;
|
2018-02-13 23:35:23 +03:00
|
|
|
|
|
|
|
bool m_r;
|
|
|
|
bool m_g;
|
|
|
|
bool m_b;
|
|
|
|
bool m_a;
|
2015-08-22 06:08:03 +03:00
|
|
|
};
|
2012-09-17 04:36:08 +04:00
|
|
|
|
2017-06-26 07:44:04 +03:00
|
|
|
} // namespace
|
|
|
|
|
2019-08-15 18:11:34 +03:00
|
|
|
ENTRY_IMPLEMENT_MAIN(
|
|
|
|
ExampleCubes
|
|
|
|
, "01-cubes"
|
|
|
|
, "Rendering simple static mesh."
|
|
|
|
, "https://bkaradzic.github.io/bgfx/examples.html#cubes"
|
|
|
|
);
|