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-14 05:55:21 +00:00
|
|
|
|
|
|
|
#include "Precomp.h"
|
2019-12-23 19:09:38 +00:00
|
|
|
#include "GLShaderManager.h"
|
2019-08-14 05:55:21 +00:00
|
|
|
|
2019-12-23 19:09:38 +00:00
|
|
|
void GLShaderManager::DeclareShader(int i, const char* name, const char* vs, const char* ps)
|
2019-08-14 05:55:21 +00:00
|
|
|
{
|
2019-09-29 16:57:51 +00:00
|
|
|
if (Shaders.size() <= (size_t)i)
|
2019-08-14 05:55:21 +00:00
|
|
|
{
|
2019-09-29 16:57:51 +00:00
|
|
|
Shaders.resize((size_t)i + 1);
|
|
|
|
AlphaTestShaders.resize((size_t)i + 1);
|
2019-08-14 05:55:21 +00:00
|
|
|
}
|
2019-09-29 16:57:51 +00:00
|
|
|
|
2019-12-21 00:47:27 +00:00
|
|
|
Shaders[i].Setup(name, vs, ps, false);
|
|
|
|
AlphaTestShaders[i].Setup(name, vs, ps, true);
|
2019-08-14 05:55:21 +00:00
|
|
|
}
|
|
|
|
|
2019-12-23 19:09:38 +00:00
|
|
|
void GLShaderManager::ReleaseResources()
|
2019-08-14 05:55:21 +00:00
|
|
|
{
|
2019-09-29 16:57:51 +00:00
|
|
|
for (size_t i = 0; i < Shaders.size(); i++)
|
2019-08-22 13:46:24 +00:00
|
|
|
{
|
|
|
|
Shaders[i].ReleaseResources();
|
|
|
|
AlphaTestShaders[i].ReleaseResources();
|
|
|
|
}
|
2019-08-14 05:55:21 +00:00
|
|
|
}
|