This commit is contained in:
raa-eruanna 2016-09-16 11:49:42 -04:00
commit 7da94e5aca
3 changed files with 14 additions and 0 deletions

View File

@ -213,6 +213,17 @@ FFlatVertexBuffer::~FFlatVertexBuffer()
map = nullptr;
}
void FFlatVertexBuffer::OutputResized(int width, int height)
{
vbo_shadowdata[4].Set(0, 0, 0, 0, 0);
vbo_shadowdata[5].Set(0, (float)height, 0, 0, 0);
vbo_shadowdata[6].Set((float)width, 0, 0, 0, 0);
vbo_shadowdata[7].Set((float)width, (float)height, 0, 0, 0);
Map();
memcpy(map, &vbo_shadowdata[4], 4 * sizeof(FFlatVertex));
Unmap();
}
void FFlatVertexBuffer::BindVBO()
{

View File

@ -131,6 +131,8 @@ public:
FFlatVertexBuffer(int width, int height);
~FFlatVertexBuffer();
void OutputResized(int width, int height);
void BindVBO();
void CreateVBO();

View File

@ -192,6 +192,7 @@ void OpenGLFrameBuffer::Update()
{
Resize(clientWidth, clientHeight);
V_OutputResized(Width, Height);
GLRenderer->mVBO->OutputResized(Width, Height);
}
}