initial commit
This commit is contained in:
26
src/Chocolate.cpp
Normal file
26
src/Chocolate.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#include <Magnum/GL/DefaultFramebuffer.h>
|
||||
#include <Magnum/Platform/Sdl2Application.h>
|
||||
|
||||
using namespace Magnum;
|
||||
|
||||
class Chocolate: public Platform::Application {
|
||||
public:
|
||||
explicit Chocolate(const Arguments& arguments);
|
||||
|
||||
private:
|
||||
void drawEvent() override;
|
||||
};
|
||||
|
||||
Chocolate::Chocolate(const Arguments& arguments): Platform::Application{arguments} {
|
||||
/* TODO: Add your initialization code here */
|
||||
}
|
||||
|
||||
void Chocolate::drawEvent() {
|
||||
GL::defaultFramebuffer.clear(GL::FramebufferClear::Color);
|
||||
|
||||
/* TODO: Add your drawing code here */
|
||||
|
||||
swapBuffers();
|
||||
}
|
||||
|
||||
MAGNUM_APPLICATION_MAIN(Chocolate)
|
||||
Reference in New Issue
Block a user