rayjs/src/main.cpp

61 lines
1.7 KiB
C++
Raw Normal View History

2023-05-03 22:01:55 +00:00
#include <Magnum/GL/Buffer.h>
2023-05-02 19:33:02 +00:00
#include <Magnum/GL/DefaultFramebuffer.h>
2023-05-03 22:01:55 +00:00
#include <Magnum/GL/Mesh.h>
#include <Magnum/Math/Color.h>
2023-05-03 09:57:23 +00:00
#include <Magnum/Platform/Sdl2Application.h>
2023-05-03 22:01:55 +00:00
#include <Magnum/Shaders/VertexColorGL.h>
#include <common.h>
2023-05-02 19:33:02 +00:00
using namespace Magnum;
2023-05-03 22:01:55 +00:00
using namespace Magnum::GL;
using namespace Magnum::Shaders;
using namespace Magnum::Platform;
using namespace Math::Literals;
2023-05-02 19:33:02 +00:00
2023-05-03 09:57:23 +00:00
class MyApplication: public Platform::Application {
public:
explicit MyApplication(const Arguments& arguments);
private:
void drawEvent() override;
2023-05-03 22:01:55 +00:00
Mesh _mesh;
VertexColorGL2D _shader;
2023-05-03 09:57:23 +00:00
};
MyApplication::MyApplication(const Arguments& arguments):
2023-05-03 22:01:55 +00:00
Application(
arguments,
Configuration()
.setTitle("Magnum Triangle Example")
.setSize(Vector2i{640,480})
.setWindowFlags(Sdl2Application::Configuration::WindowFlag::Resizable))
2023-05-03 09:57:23 +00:00
{
2023-05-03 22:01:55 +00:00
app_init_quickjs(arguments.argc, arguments.argv);
struct TriangleVertex {
Vector2 position;
Color3 color;
};
const TriangleVertex vertices[]{
{{-0.5f, -0.5f}, 0xff0000_rgbf}, /* Left vertex, red color */
{{ 0.5f, -0.5f}, 0x00ff00_rgbf}, /* Right vertex, green color */
{{ 0.0f, 0.5f}, 0x0000ff_rgbf} /* Top vertex, blue color */
};
_mesh.setCount(Containers::arraySize(vertices))
.addVertexBuffer(Buffer(vertices), 0,
VertexColorGL2D::Position(),
VertexColorGL2D::Color3());
2023-05-03 09:57:23 +00:00
}
void MyApplication::drawEvent() {
2023-05-03 22:01:55 +00:00
defaultFramebuffer.clear(FramebufferClear::Color);
app_update_quickjs();
2023-05-03 09:57:23 +00:00
2023-05-03 22:01:55 +00:00
_shader.draw(_mesh);
2023-05-03 09:57:23 +00:00
swapBuffers();
}
MAGNUM_APPLICATION_MAIN(MyApplication)