d63f341d89
Got the builtin basicscene to render. For some reason, it seems like the model matrices are not working correctly. The two shapes that are supposed to be rendering on screen are not moving around as they should be.
14 lines
136 B
C++
14 lines
136 B
C++
#pragma once
|
|
|
|
namespace charcoal
|
|
{
|
|
namespace builtin
|
|
{
|
|
class Prerenderable
|
|
{
|
|
public:
|
|
virtual void prerender() = 0;
|
|
};
|
|
}
|
|
}
|