Compare commits

..

No commits in common. "478cba5e1500e73f65b3d6c42b51581c84c506e0" and "b7863d642996c1edf6bbbb2d3c52b3043380954c" have entirely different histories.

4 changed files with 4 additions and 11 deletions

View File

@ -1,5 +0,0 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Brett C++ Config" />
</state>
</component>

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.25)
project(graphs VERSION 0.0.9)
project(graphs VERSION 0.0.6)
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)

@ -1 +1 @@
Subproject commit cd7c34cb1616b8496acbf69042f0ab92cfbfca83
Subproject commit 894355810995472652b83b9f18345d0c8c9fc3d2

View File

@ -26,7 +26,7 @@ blt::gfx::resource_manager resources;
blt::gfx::batch_renderer_2d renderer_2d(resources);
blt::gfx::first_person_camera camera;
void init(blt::gfx::window_context& context)
void init()
{
using namespace blt::gfx;
@ -39,7 +39,7 @@ float x = 50, y = 50;
float sx = 0.5, sy = 0.5;
float ax = 0.05, ay = 0.05;
void update(blt::gfx::window_context& context, std::int32_t width, std::int32_t height)
void update(std::int32_t width, std::int32_t height)
{
global_matrices.update_perspectives(width, height, 90, 0.1, 2000);
@ -57,8 +57,6 @@ void update(blt::gfx::window_context& context, std::int32_t width, std::int32_t
renderer_2d.drawLine(blt::vec4{1, 0, 1, 1}, 0.0f, blt::vec2{x,y}, blt::vec2{500, 500}, 5.0f);
renderer_2d.drawLine(blt::vec4{1, 0, 0, 1}, 0.0f, blt::vec2{0,150}, blt::vec2{240, 0}, 12.0f);
renderer_2d.drawPoint(blt::vec4{0, 1, 0, 1}, 1.0f, blt::vec2{500, 500}, 50.0f);
renderer_2d.drawPoint(blt::vec4{0, 1, 1, 1}, 1.0f, blt::vec2{800, 500}, 256.0f);
//renderer_2d.drawRectangle(blt::vec4{1,1,1,1}, -1.0f, blt::vec2{width / 2.0, height / 2.0}, blt::vec2{width, height});
camera.update();
camera.update_view(global_matrices);