2013-06-23 07:49:34 +00:00
|
|
|
/*
|
|
|
|
** gltexture.cpp
|
|
|
|
** Low level OpenGL texture handling. These classes are also
|
|
|
|
** containers for the various translations a texture can have.
|
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
2014-08-22 21:50:38 +00:00
|
|
|
** Copyright 2004-2014 Christoph Oelckers
|
2013-06-23 07:49:34 +00:00
|
|
|
** All rights reserved.
|
|
|
|
**
|
|
|
|
** Redistribution and use in source and binary forms, with or without
|
|
|
|
** modification, are permitted provided that the following conditions
|
|
|
|
** are met:
|
|
|
|
**
|
|
|
|
** 1. Redistributions of source code must retain the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer.
|
|
|
|
** 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer in the
|
|
|
|
** documentation and/or other materials provided with the distribution.
|
|
|
|
** 3. The name of the author may not be used to endorse or promote products
|
|
|
|
** derived from this software without specific prior written permission.
|
|
|
|
** 4. When not used as part of GZDoom or a GZDoom derivative, this code will be
|
|
|
|
** covered by the terms of the GNU Lesser General Public License as published
|
|
|
|
** by the Free Software Foundation; either version 2.1 of the License, or (at
|
|
|
|
** your option) any later version.
|
|
|
|
** 5. Full disclosure of the entire project's source code, except for third
|
|
|
|
** party libraries is mandatory. (NOTE: This clause is non-negotiable!)
|
|
|
|
**
|
|
|
|
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gl/system/gl_system.h"
|
|
|
|
#include "templates.h"
|
|
|
|
#include "m_crc32.h"
|
|
|
|
#include "c_cvars.h"
|
|
|
|
#include "c_dispatch.h"
|
|
|
|
#include "v_palette.h"
|
|
|
|
|
2013-09-03 16:29:39 +00:00
|
|
|
#include "gl/system/gl_interface.h"
|
2013-06-23 07:49:34 +00:00
|
|
|
#include "gl/system/gl_cvars.h"
|
|
|
|
#include "gl/renderer/gl_renderer.h"
|
|
|
|
#include "gl/textures/gl_material.h"
|
|
|
|
|
|
|
|
|
|
|
|
extern TexFilter_s TexFilter[];
|
|
|
|
extern int TexFormat[];
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Static texture data
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
unsigned int FHardwareTexture::lastbound[FHardwareTexture::MAX_TEXTURES];
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// STATIC - Gets the maximum size of hardware textures
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
int FHardwareTexture::GetTexDimension(int value)
|
|
|
|
{
|
|
|
|
if (value > gl.max_texturesize) return gl.max_texturesize;
|
2014-04-06 12:35:44 +00:00
|
|
|
return value;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
|
2014-04-15 09:59:41 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Quick'n dirty image rescaling.
|
|
|
|
//
|
|
|
|
// This will only be used when the source texture is larger than
|
|
|
|
// what the hardware can manage (extremely rare in Doom)
|
|
|
|
//
|
|
|
|
// Code taken from wxWidgets
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
struct BoxPrecalc
|
|
|
|
{
|
|
|
|
int boxStart;
|
|
|
|
int boxEnd;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void ResampleBoxPrecalc(TArray<BoxPrecalc>& boxes, int oldDim)
|
|
|
|
{
|
|
|
|
int newDim = boxes.Size();
|
|
|
|
const double scale_factor_1 = double(oldDim) / newDim;
|
|
|
|
const int scale_factor_2 = (int)(scale_factor_1 / 2);
|
|
|
|
|
|
|
|
for (int dst = 0; dst < newDim; ++dst)
|
|
|
|
{
|
|
|
|
// Source pixel in the Y direction
|
|
|
|
const int src_p = int(dst * scale_factor_1);
|
|
|
|
|
|
|
|
BoxPrecalc& precalc = boxes[dst];
|
|
|
|
precalc.boxStart = clamp<int>(int(src_p - scale_factor_1 / 2.0 + 1), 0, oldDim - 1);
|
|
|
|
precalc.boxEnd = clamp<int>(MAX<int>(precalc.boxStart + 1, int(src_p + scale_factor_2)), 0, oldDim - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FHardwareTexture::Resize(int width, int height, unsigned char *src_data, unsigned char *dst_data)
|
|
|
|
{
|
|
|
|
|
|
|
|
// This function implements a simple pre-blur/box averaging method for
|
|
|
|
// downsampling that gives reasonably smooth results To scale the image
|
|
|
|
// down we will need to gather a grid of pixels of the size of the scale
|
|
|
|
// factor in each direction and then do an averaging of the pixels.
|
|
|
|
|
|
|
|
TArray<BoxPrecalc> vPrecalcs(height);
|
|
|
|
TArray<BoxPrecalc> hPrecalcs(width);
|
|
|
|
|
|
|
|
ResampleBoxPrecalc(vPrecalcs, texheight);
|
|
|
|
ResampleBoxPrecalc(hPrecalcs, texwidth);
|
|
|
|
|
|
|
|
int averaged_pixels, averaged_alpha, src_pixel_index;
|
|
|
|
double sum_r, sum_g, sum_b, sum_a;
|
|
|
|
|
|
|
|
for (int y = 0; y < height; y++) // Destination image - Y direction
|
|
|
|
{
|
|
|
|
// Source pixel in the Y direction
|
|
|
|
const BoxPrecalc& vPrecalc = vPrecalcs[y];
|
|
|
|
|
|
|
|
for (int x = 0; x < width; x++) // Destination image - X direction
|
|
|
|
{
|
|
|
|
// Source pixel in the X direction
|
|
|
|
const BoxPrecalc& hPrecalc = hPrecalcs[x];
|
|
|
|
|
|
|
|
// Box of pixels to average
|
|
|
|
averaged_pixels = 0;
|
|
|
|
averaged_alpha = 0;
|
|
|
|
sum_r = sum_g = sum_b = sum_a = 0.0;
|
|
|
|
|
|
|
|
for (int j = vPrecalc.boxStart; j <= vPrecalc.boxEnd; ++j)
|
|
|
|
{
|
|
|
|
for (int i = hPrecalc.boxStart; i <= hPrecalc.boxEnd; ++i)
|
|
|
|
{
|
|
|
|
// Calculate the actual index in our source pixels
|
|
|
|
src_pixel_index = j * texwidth + i;
|
|
|
|
|
|
|
|
int a = src_data[src_pixel_index * 4 + 3];
|
|
|
|
if (a > 0) // do not use color from fully transparent pixels
|
|
|
|
{
|
|
|
|
sum_r += src_data[src_pixel_index * 4 + 0];
|
|
|
|
sum_g += src_data[src_pixel_index * 4 + 1];
|
|
|
|
sum_b += src_data[src_pixel_index * 4 + 2];
|
|
|
|
sum_a += a;
|
|
|
|
averaged_pixels++;
|
|
|
|
}
|
|
|
|
averaged_alpha++;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate the average from the sum and number of averaged pixels
|
|
|
|
dst_data[0] = (unsigned char)xs_CRoundToInt(sum_r / averaged_pixels);
|
|
|
|
dst_data[1] = (unsigned char)xs_CRoundToInt(sum_g / averaged_pixels);
|
|
|
|
dst_data[2] = (unsigned char)xs_CRoundToInt(sum_b / averaged_pixels);
|
|
|
|
dst_data[3] = (unsigned char)xs_CRoundToInt(sum_a / averaged_alpha);
|
|
|
|
dst_data += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-22 21:50:38 +00:00
|
|
|
|
2013-06-23 07:49:34 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Loads the texture image into the hardware
|
|
|
|
//
|
|
|
|
// NOTE: For some strange reason I was unable to find the source buffer
|
|
|
|
// should be one line higher than the actual texture. I got extremely
|
|
|
|
// strange crashes deep inside the GL driver when I didn't do it!
|
|
|
|
//
|
|
|
|
//===========================================================================
|
2014-08-22 21:50:38 +00:00
|
|
|
|
|
|
|
unsigned int FHardwareTexture::CreateTexture(unsigned char * buffer, int w, int h, int texunit, bool mipmap, int translation, bool alphatexture)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
int rh,rw;
|
|
|
|
int texformat=TexFormat[gl_texture_format];
|
|
|
|
bool deletebuffer=false;
|
|
|
|
|
2014-06-21 10:52:19 +00:00
|
|
|
if (alphatexture)
|
|
|
|
{
|
- decided to restrict the 2.0 beta to OpenGL 4.x with GL_ARB_buffer_storage extension and removed all code for supporting older versions.
Sadly, anything else makes no sense.
All the recently made changes live or die, depending on this extension's presence.
Without it, there are major performance issues with the buffer uploads. All of the traditional buffer upload methods are without exception horrendously slow, especially in the context of a Doom engine where frequent small updates are required.
It could be solved with a complete restructuring of the engine, of course, but that's hardly worth the effort, considering it's only for legacy hardware whose market share will inevitably shrink considerably over the next years.
And even then, under the best circumstances I'd still get the same performance as the old immediate mode renderer in GZDoom 1.x and still couldn't implement the additions I'd like to make.
So, since I need to keep GZDoom 1.x around anyway for older GL 2.x hardware, it may as well serve for 3.x hardware, too. It's certainly less work than constantly trying to find workarounds for the older hardware's limitations that cost more time than working on future-proofing the engine.
This new, trimmed down 4.x renderer runs on a core profile configuration and uses persistently mapped buffers for nearly everything that is getting transferred to the GPU. (The global uniforms are still being used as such but they'll be phased out after the first beta release.
2014-08-01 20:42:39 +00:00
|
|
|
texformat = GL_R8;
|
2014-08-22 21:50:38 +00:00
|
|
|
translation = TRANS_Alpha;
|
2014-06-21 10:52:19 +00:00
|
|
|
}
|
|
|
|
else if (forcenocompression)
|
|
|
|
{
|
|
|
|
texformat = GL_RGBA8;
|
|
|
|
}
|
2014-08-22 21:50:38 +00:00
|
|
|
TranslatedTexture * glTex=GetTexID(translation);
|
|
|
|
if (glTex->glTexID==0) glGenTextures(1,&glTex->glTexID);
|
|
|
|
if (texunit != 0) glActiveTexture(GL_TEXTURE0+texunit);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, glTex->glTexID);
|
|
|
|
lastbound[texunit] = glTex->glTexID;
|
2013-06-23 07:49:34 +00:00
|
|
|
|
|
|
|
if (!buffer)
|
|
|
|
{
|
|
|
|
w=texwidth;
|
|
|
|
h=abs(texheight);
|
|
|
|
rw = GetTexDimension (w);
|
|
|
|
rh = GetTexDimension (h);
|
|
|
|
|
|
|
|
// The texture must at least be initialized if no data is present.
|
2014-08-22 21:50:38 +00:00
|
|
|
glTex->mipmapped = false;
|
2013-06-23 07:49:34 +00:00
|
|
|
buffer=(unsigned char *)calloc(4,rw * (rh+1));
|
|
|
|
deletebuffer=true;
|
|
|
|
//texheight=-h;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rw = GetTexDimension (w);
|
|
|
|
rh = GetTexDimension (h);
|
|
|
|
|
2014-04-06 12:35:44 +00:00
|
|
|
if (rw < w || rh < h)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2014-04-06 12:35:44 +00:00
|
|
|
// The texture is larger than what the hardware can handle so scale it down.
|
2013-06-23 07:49:34 +00:00
|
|
|
unsigned char * scaledbuffer=(unsigned char *)calloc(4,rw * (rh+1));
|
|
|
|
if (scaledbuffer)
|
|
|
|
{
|
2014-04-15 09:59:41 +00:00
|
|
|
Resize(rw, rh, buffer, scaledbuffer);
|
2013-06-23 07:49:34 +00:00
|
|
|
deletebuffer=true;
|
|
|
|
buffer=scaledbuffer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-09-03 12:05:41 +00:00
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, texformat, rw, rh, 0, GL_RGBA, GL_UNSIGNED_BYTE, buffer);
|
2013-06-23 07:49:34 +00:00
|
|
|
|
|
|
|
if (deletebuffer) free(buffer);
|
|
|
|
|
2014-08-22 21:50:38 +00:00
|
|
|
if (mipmap && TexFilter[gl_texture_filter].mipmapping)
|
2014-06-21 10:52:19 +00:00
|
|
|
{
|
2014-08-22 21:50:38 +00:00
|
|
|
glGenerateMipmap(GL_TEXTURE_2D);
|
|
|
|
glTex->mipmapped = true;
|
2014-06-21 10:52:19 +00:00
|
|
|
}
|
2014-06-21 13:50:32 +00:00
|
|
|
|
2014-08-22 21:50:38 +00:00
|
|
|
if (alphatexture)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2014-08-22 21:50:38 +00:00
|
|
|
static const GLint swizzleMask[] = {GL_ONE, GL_ONE, GL_ONE, GL_RED};
|
|
|
|
glTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_SWIZZLE_RGBA, swizzleMask);
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
2014-08-22 21:50:38 +00:00
|
|
|
if (texunit != 0) glActiveTexture(GL_TEXTURE0);
|
|
|
|
return glTex->glTexID;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Creates a texture
|
|
|
|
//
|
|
|
|
//===========================================================================
|
2014-08-22 21:50:38 +00:00
|
|
|
FHardwareTexture::FHardwareTexture(int _width, int _height, bool nocompression)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
forcenocompression = nocompression;
|
|
|
|
texwidth=_width;
|
|
|
|
texheight=_height;
|
|
|
|
|
2014-08-22 21:50:38 +00:00
|
|
|
glDefTex.glTexID = 0;
|
|
|
|
glDefTex.translation = 0;
|
|
|
|
glDefTex.mipmapped = false;
|
2013-06-23 07:49:34 +00:00
|
|
|
glDepthID = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Deletes a texture id and unbinds it from the texture units
|
|
|
|
//
|
|
|
|
//===========================================================================
|
2014-08-22 21:50:38 +00:00
|
|
|
void FHardwareTexture::TranslatedTexture::Delete()
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2014-08-22 21:50:38 +00:00
|
|
|
if (glTexID != 0)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
for(int i = 0; i < MAX_TEXTURES; i++)
|
|
|
|
{
|
2014-08-22 21:50:38 +00:00
|
|
|
if (lastbound[i] == glTexID)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
lastbound[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
2014-08-22 21:50:38 +00:00
|
|
|
glDeleteTextures(1, &glTexID);
|
|
|
|
glTexID = 0;
|
|
|
|
mipmapped = false;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Frees all associated resources
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void FHardwareTexture::Clean(bool all)
|
|
|
|
{
|
|
|
|
int cm_arraysize = CM_FIRSTSPECIALCOLORMAP + SpecialColormaps.Size();
|
|
|
|
|
|
|
|
if (all)
|
|
|
|
{
|
2014-08-22 21:50:38 +00:00
|
|
|
glDefTex.Delete();
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
2014-08-22 21:50:38 +00:00
|
|
|
for(unsigned int i=0;i<glTex_Translated.Size();i++)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2014-08-22 21:50:38 +00:00
|
|
|
glTex_Translated[i].Delete();
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
2014-08-22 21:50:38 +00:00
|
|
|
glTex_Translated.Clear();
|
2013-09-03 16:29:39 +00:00
|
|
|
if (glDepthID != 0) glDeleteRenderbuffers(1, &glDepthID);
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Destroys the texture
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
FHardwareTexture::~FHardwareTexture()
|
|
|
|
{
|
|
|
|
Clean(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Gets a texture ID address and validates all required data
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2014-08-22 21:50:38 +00:00
|
|
|
FHardwareTexture::TranslatedTexture *FHardwareTexture::GetTexID(int translation)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2014-08-22 21:50:38 +00:00
|
|
|
if (translation == 0)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2014-08-22 21:50:38 +00:00
|
|
|
return &glDefTex;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// normally there aren't more than very few different
|
|
|
|
// translations here so this isn't performance critical.
|
2014-08-22 21:50:38 +00:00
|
|
|
for (unsigned int i = 0; i < glTex_Translated.Size(); i++)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2014-08-22 21:50:38 +00:00
|
|
|
if (glTex_Translated[i].translation == translation)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2014-08-22 21:50:38 +00:00
|
|
|
return &glTex_Translated[i];
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-22 21:50:38 +00:00
|
|
|
int add = glTex_Translated.Reserve(1);
|
|
|
|
glTex_Translated[add].translation = translation;
|
|
|
|
glTex_Translated[add].glTexID = 0;
|
|
|
|
glTex_Translated[add].mipmapped = false;
|
|
|
|
return &glTex_Translated[add];
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Binds this patch
|
|
|
|
//
|
|
|
|
//===========================================================================
|
2014-08-22 21:50:38 +00:00
|
|
|
unsigned int FHardwareTexture::Bind(int texunit, int translation, bool alphatexture, bool needmipmap)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2014-05-11 17:44:19 +00:00
|
|
|
if (alphatexture) translation = TRANS_Alpha;
|
2014-08-22 21:50:38 +00:00
|
|
|
TranslatedTexture *pTex = GetTexID(translation);
|
2013-06-23 07:49:34 +00:00
|
|
|
|
2014-08-22 21:50:38 +00:00
|
|
|
if (pTex->glTexID != 0)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2014-08-22 21:50:38 +00:00
|
|
|
if (lastbound[texunit] == pTex->glTexID) return pTex->glTexID;
|
|
|
|
lastbound[texunit] = pTex->glTexID;
|
|
|
|
if (texunit != 0) glActiveTexture(GL_TEXTURE0 + texunit);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, pTex->glTexID);
|
|
|
|
// Check if we need mipmaps on a texture that was creted without them.
|
|
|
|
if (needmipmap && !pTex->mipmapped && TexFilter[gl_texture_filter].mipmapping)
|
|
|
|
{
|
|
|
|
glGenerateMipmap(GL_TEXTURE_2D);
|
|
|
|
pTex->mipmapped = true;
|
|
|
|
}
|
2013-09-03 16:29:39 +00:00
|
|
|
if (texunit != 0) glActiveTexture(GL_TEXTURE0);
|
2014-08-22 21:50:38 +00:00
|
|
|
return pTex->glTexID;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FHardwareTexture::Unbind(int texunit)
|
|
|
|
{
|
|
|
|
if (lastbound[texunit] != 0)
|
|
|
|
{
|
2013-09-03 16:29:39 +00:00
|
|
|
if (texunit != 0) glActiveTexture(GL_TEXTURE0+texunit);
|
2013-09-03 12:05:41 +00:00
|
|
|
glBindTexture(GL_TEXTURE_2D, 0);
|
2013-09-03 16:29:39 +00:00
|
|
|
if (texunit != 0) glActiveTexture(GL_TEXTURE0);
|
2013-06-23 07:49:34 +00:00
|
|
|
lastbound[texunit] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FHardwareTexture::UnbindAll()
|
|
|
|
{
|
|
|
|
for(int texunit = 0; texunit < 16; texunit++)
|
|
|
|
{
|
|
|
|
Unbind(texunit);
|
|
|
|
}
|
2014-08-31 17:00:17 +00:00
|
|
|
FMaterial::ClearLastTexture();
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Creates a depth buffer for this texture
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
int FHardwareTexture::GetDepthBuffer()
|
|
|
|
{
|
2014-06-21 13:50:32 +00:00
|
|
|
if (glDepthID == 0)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2014-06-21 13:50:32 +00:00
|
|
|
glGenRenderbuffers(1, &glDepthID);
|
|
|
|
glBindRenderbuffer(GL_RENDERBUFFER, glDepthID);
|
|
|
|
glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH24_STENCIL8,
|
|
|
|
GetTexDimension(texwidth), GetTexDimension(texheight));
|
|
|
|
glBindRenderbuffer(GL_RENDERBUFFER, 0);
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
2014-06-21 13:50:32 +00:00
|
|
|
return glDepthID;
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Binds this texture's surfaces to the current framrbuffer
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void FHardwareTexture::BindToFrameBuffer()
|
|
|
|
{
|
2014-08-22 21:50:38 +00:00
|
|
|
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, glDefTex.glTexID, 0);
|
2014-06-21 13:50:32 +00:00
|
|
|
glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT, GL_RENDERBUFFER, GetDepthBuffer());
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
|