2016-09-14 18:01:13 +00:00
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Copyright(C) 2014-2016 Christoph Oelckers
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with this program. If not, see http://www.gnu.org/licenses/
|
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
//
|
2014-08-22 21:50:38 +00:00
|
|
|
|
|
|
|
#include "gl/system/gl_system.h"
|
|
|
|
#include "templates.h"
|
|
|
|
#include "c_cvars.h"
|
|
|
|
#include "c_dispatch.h"
|
|
|
|
|
|
|
|
#include "gl/system/gl_interface.h"
|
|
|
|
#include "gl/system/gl_cvars.h"
|
2016-08-17 21:18:47 +00:00
|
|
|
#include "gl/system/gl_debug.h"
|
2014-08-22 21:50:38 +00:00
|
|
|
#include "gl/renderer/gl_renderer.h"
|
|
|
|
#include "gl_samplers.h"
|
2016-04-22 17:54:51 +00:00
|
|
|
#include "gl_material.h"
|
2014-08-22 21:50:38 +00:00
|
|
|
|
|
|
|
extern TexFilter_s TexFilter[];
|
|
|
|
|
|
|
|
|
|
|
|
FSamplerManager::FSamplerManager()
|
|
|
|
{
|
2016-04-22 17:54:51 +00:00
|
|
|
if (gl.flags & RFL_SAMPLER_OBJECTS)
|
|
|
|
{
|
|
|
|
glGenSamplers(7, mSamplers);
|
|
|
|
SetTextureFilterMode();
|
|
|
|
glSamplerParameteri(mSamplers[5], GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
|
|
|
glSamplerParameteri(mSamplers[5], GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
|
|
glSamplerParameterf(mSamplers[5], GL_TEXTURE_MAX_ANISOTROPY_EXT, 1.f);
|
|
|
|
glSamplerParameterf(mSamplers[4], GL_TEXTURE_MAX_ANISOTROPY_EXT, 1.f);
|
|
|
|
glSamplerParameterf(mSamplers[6], GL_TEXTURE_MAX_ANISOTROPY_EXT, 1.f);
|
|
|
|
|
|
|
|
glSamplerParameteri(mSamplers[1], GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glSamplerParameteri(mSamplers[2], GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
|
|
|
glSamplerParameteri(mSamplers[3], GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glSamplerParameteri(mSamplers[3], GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
|
|
|
glSamplerParameteri(mSamplers[4], GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glSamplerParameteri(mSamplers[4], GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
2016-08-17 21:18:47 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < 7; i++)
|
|
|
|
{
|
|
|
|
FString name;
|
|
|
|
name.Format("mSamplers[%d]", i);
|
|
|
|
FGLDebug::LabelObject(GL_SAMPLER, mSamplers[i], name);
|
|
|
|
}
|
2016-04-22 17:54:51 +00:00
|
|
|
}
|
2014-08-22 21:50:38 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
FSamplerManager::~FSamplerManager()
|
|
|
|
{
|
2016-04-22 17:54:51 +00:00
|
|
|
if (gl.flags & RFL_SAMPLER_OBJECTS)
|
|
|
|
{
|
|
|
|
UnbindAll();
|
|
|
|
glDeleteSamplers(7, mSamplers);
|
|
|
|
}
|
2014-08-22 21:50:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FSamplerManager::UnbindAll()
|
|
|
|
{
|
2016-04-22 17:54:51 +00:00
|
|
|
if (gl.flags & RFL_SAMPLER_OBJECTS)
|
2014-08-22 21:50:38 +00:00
|
|
|
{
|
2016-04-22 17:54:51 +00:00
|
|
|
for (int i = 0; i < FHardwareTexture::MAX_TEXTURES; i++)
|
|
|
|
{
|
|
|
|
glBindSampler(i, 0);
|
|
|
|
}
|
2014-08-22 21:50:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-22 17:54:51 +00:00
|
|
|
BYTE FSamplerManager::Bind(int texunit, int num, int lastval)
|
2014-08-22 21:50:38 +00:00
|
|
|
{
|
2016-04-22 17:54:51 +00:00
|
|
|
if (gl.flags & RFL_SAMPLER_OBJECTS)
|
|
|
|
{
|
|
|
|
unsigned int samp = mSamplers[num];
|
2016-05-03 11:39:41 +00:00
|
|
|
glBindSampler(texunit, samp);
|
|
|
|
return 255;
|
2016-04-22 17:54:51 +00:00
|
|
|
}
|
|
|
|
else
|
2014-08-22 21:50:38 +00:00
|
|
|
{
|
2016-04-22 17:54:51 +00:00
|
|
|
glActiveTexture(GL_TEXTURE0 + texunit);
|
|
|
|
switch (num)
|
|
|
|
{
|
|
|
|
case CLAMP_NONE:
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
|
2016-05-03 11:39:41 +00:00
|
|
|
if (lastval >= CLAMP_XY_NOMIP)
|
2016-04-22 17:54:51 +00:00
|
|
|
{
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, TexFilter[gl_texture_filter].minfilter);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, TexFilter[gl_texture_filter].magfilter);
|
|
|
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, gl_texture_filter_anisotropic);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CLAMP_X:
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
|
2016-05-03 11:39:41 +00:00
|
|
|
if (lastval >= CLAMP_XY_NOMIP)
|
2016-04-22 17:54:51 +00:00
|
|
|
{
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, TexFilter[gl_texture_filter].minfilter);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, TexFilter[gl_texture_filter].magfilter);
|
|
|
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, gl_texture_filter_anisotropic);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CLAMP_Y:
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
2016-05-03 11:39:41 +00:00
|
|
|
if (lastval >= CLAMP_XY_NOMIP)
|
2016-04-22 17:54:51 +00:00
|
|
|
{
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, TexFilter[gl_texture_filter].minfilter);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, TexFilter[gl_texture_filter].magfilter);
|
|
|
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, gl_texture_filter_anisotropic);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CLAMP_XY:
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
2016-05-03 11:39:41 +00:00
|
|
|
if (lastval >= CLAMP_XY_NOMIP)
|
2016-04-22 17:54:51 +00:00
|
|
|
{
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, TexFilter[gl_texture_filter].minfilter);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, TexFilter[gl_texture_filter].magfilter);
|
|
|
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, gl_texture_filter_anisotropic);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2016-05-03 11:39:41 +00:00
|
|
|
case CLAMP_XY_NOMIP:
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, TexFilter[gl_texture_filter].magfilter);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, TexFilter[gl_texture_filter].magfilter);
|
|
|
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, 1);
|
|
|
|
break;
|
|
|
|
|
2016-04-22 17:54:51 +00:00
|
|
|
case CLAMP_NOFILTER:
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
|
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CLAMP_CAMTEX:
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, TexFilter[gl_texture_filter].magfilter);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, TexFilter[gl_texture_filter].magfilter);
|
|
|
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
glActiveTexture(GL_TEXTURE0);
|
|
|
|
return num;
|
2014-08-22 21:50:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FSamplerManager::SetTextureFilterMode()
|
|
|
|
{
|
2016-04-22 17:54:51 +00:00
|
|
|
if (gl.flags & RFL_SAMPLER_OBJECTS)
|
|
|
|
{
|
|
|
|
UnbindAll();
|
2014-08-22 21:50:38 +00:00
|
|
|
|
2016-04-22 17:54:51 +00:00
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
glSamplerParameteri(mSamplers[i], GL_TEXTURE_MIN_FILTER, TexFilter[gl_texture_filter].minfilter);
|
|
|
|
glSamplerParameteri(mSamplers[i], GL_TEXTURE_MAG_FILTER, TexFilter[gl_texture_filter].magfilter);
|
|
|
|
glSamplerParameterf(mSamplers[i], GL_TEXTURE_MAX_ANISOTROPY_EXT, gl_texture_filter_anisotropic);
|
|
|
|
}
|
|
|
|
glSamplerParameteri(mSamplers[4], GL_TEXTURE_MIN_FILTER, TexFilter[gl_texture_filter].magfilter);
|
|
|
|
glSamplerParameteri(mSamplers[4], GL_TEXTURE_MAG_FILTER, TexFilter[gl_texture_filter].magfilter);
|
|
|
|
glSamplerParameteri(mSamplers[6], GL_TEXTURE_MIN_FILTER, TexFilter[gl_texture_filter].magfilter);
|
|
|
|
glSamplerParameteri(mSamplers[6], GL_TEXTURE_MAG_FILTER, TexFilter[gl_texture_filter].magfilter);
|
|
|
|
}
|
|
|
|
else
|
2014-08-22 21:50:38 +00:00
|
|
|
{
|
2016-04-22 17:54:51 +00:00
|
|
|
GLRenderer->FlushTextures();
|
2014-08-22 21:50:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|