2019-12-22 23:13:09 +00:00
|
|
|
/*
|
|
|
|
** BuilderNative Renderer
|
|
|
|
** Copyright (c) 2019 Magnus Norddahl
|
|
|
|
**
|
|
|
|
** This software is provided 'as-is', without any express or implied
|
|
|
|
** warranty. In no event will the authors be held liable for any damages
|
|
|
|
** arising from the use of this software.
|
|
|
|
**
|
|
|
|
** Permission is granted to anyone to use this software for any purpose,
|
|
|
|
** including commercial applications, and to alter it and redistribute it
|
|
|
|
** freely, subject to the following restrictions:
|
|
|
|
**
|
|
|
|
** 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
** claim that you wrote the original software. If you use this software
|
|
|
|
** in a product, an acknowledgment in the product documentation would be
|
|
|
|
** appreciated but is not required.
|
|
|
|
** 2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
** misrepresented as being the original software.
|
|
|
|
** 3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
|
2019-08-09 04:18:08 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-12-22 22:44:58 +00:00
|
|
|
#include <list>
|
|
|
|
|
2019-08-16 11:07:57 +00:00
|
|
|
enum class VertexFormat : int32_t { Flat, World };
|
|
|
|
|
2019-12-22 22:44:58 +00:00
|
|
|
class RenderDevice;
|
|
|
|
class VertexBuffer;
|
|
|
|
|
2019-12-18 01:27:49 +00:00
|
|
|
class SharedVertexBuffer
|
2019-08-09 04:18:08 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-12-22 22:44:58 +00:00
|
|
|
SharedVertexBuffer(VertexFormat format, int size);
|
2019-08-09 04:18:08 +00:00
|
|
|
|
2019-08-10 05:46:29 +00:00
|
|
|
GLuint GetBuffer();
|
2019-08-16 11:07:57 +00:00
|
|
|
GLuint GetVAO();
|
|
|
|
|
|
|
|
VertexFormat Format = VertexFormat::Flat;
|
|
|
|
|
2019-12-22 22:44:58 +00:00
|
|
|
int NextPos = 0;
|
|
|
|
int Size = 0;
|
|
|
|
|
|
|
|
std::list<VertexBuffer*> VertexBuffers;
|
2019-12-18 01:27:49 +00:00
|
|
|
|
2019-08-16 11:07:57 +00:00
|
|
|
static const int FlatStride = 24;
|
|
|
|
static const int WorldStride = 36;
|
|
|
|
|
|
|
|
static void SetupFlatVAO();
|
|
|
|
static void SetupWorldVAO();
|
2019-08-09 21:15:48 +00:00
|
|
|
|
|
|
|
private:
|
2019-08-10 05:46:29 +00:00
|
|
|
GLuint mBuffer = 0;
|
2019-08-16 11:07:57 +00:00
|
|
|
GLuint mVAO = 0;
|
2019-08-09 04:18:08 +00:00
|
|
|
};
|
2019-12-18 01:27:49 +00:00
|
|
|
|
|
|
|
class VertexBuffer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
~VertexBuffer();
|
|
|
|
|
|
|
|
VertexFormat Format = VertexFormat::Flat;
|
|
|
|
|
2019-12-22 22:44:58 +00:00
|
|
|
RenderDevice* Device = nullptr;
|
|
|
|
std::list<VertexBuffer*>::iterator ListIt;
|
|
|
|
|
2019-12-18 01:27:49 +00:00
|
|
|
int BufferOffset = 0;
|
|
|
|
int BufferStartIndex = 0;
|
2019-12-22 22:44:58 +00:00
|
|
|
int Size = 0;
|
2019-12-18 01:27:49 +00:00
|
|
|
};
|