Danbias/Code/OysterGraphics/Render/DefaultRenderer.h

25 lines
615 B
C++

#pragma once
#include "..\Definitions\GraphicalDefinition.h"
#include "..\Core\Core.h"
#include "Preparations\Preparations.h"
#include "..\Model\Model.h"
namespace Oyster
{
namespace Graphics
{
namespace Render
{
class DefaultRenderer
{
public:
static void NewFrame(Oyster::Math::Float4x4 View, Oyster::Math::Float4x4 Projection, Definitions::Pointlight* Lights, int numLights);
static void RenderScene(Model::Model* models, int count, Math::Matrix View, Math::Matrix Projection);
static void EndFrame();
static Model::Model* cube;
static Model::Model* cube2;
};
}
}
}