2013-11-20 16:51:53 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "..\..\Core\Core.h"
|
|
|
|
#include "..\Preparations\Preparations.h"
|
|
|
|
#include "..\..\Model\Model.h"
|
|
|
|
|
|
|
|
namespace Oyster
|
|
|
|
{
|
|
|
|
namespace Graphics
|
|
|
|
{
|
|
|
|
namespace Render
|
|
|
|
{
|
|
|
|
namespace Rendering
|
|
|
|
{
|
2013-11-21 10:02:17 +01:00
|
|
|
class Basic
|
2013-11-20 16:51:53 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2013-11-21 18:31:16 +01:00
|
|
|
static void NewFrame(Oyster::Math::Float4x4 View, Oyster::Math::Float4x4 Projection);
|
2013-11-26 09:09:35 +01:00
|
|
|
static void RenderScene(Model::Model* models, int count);
|
2013-11-20 16:51:53 +01:00
|
|
|
static void EndFrame();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|