mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
bb4a19cf3a
For brightmaps we do not need full RGBA8 data with mipmaps - RGBA2 without mipmaps is fully sufficient here and will save a lot of video memory.
121 lines
3.6 KiB
C++
121 lines
3.6 KiB
C++
//
|
|
//---------------------------------------------------------------------------
|
|
//
|
|
// Copyright(C) 2004-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/
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
//
|
|
|
|
#include <algorithm>
|
|
#include "glad/glad.h"
|
|
#include "glbackend.h"
|
|
#include "bitmap.h"
|
|
//#include "compat.h"
|
|
|
|
// Workaround to avoid including the dirty 'compat.h' header. This will hopefully not be needed anymore once the texture format uses something better.
|
|
# define B_LITTLE_ENDIAN 1
|
|
# define B_BIG_ENDIAN 0
|
|
|
|
|
|
|
|
//===========================================================================
|
|
//
|
|
// Allocates an empty texture
|
|
//
|
|
//===========================================================================
|
|
|
|
unsigned int FHardwareTexture::CreateTexture(int w, int h, int type, bool mipmapped)
|
|
{
|
|
static int gltypes[] = { GL_R8, GL_RGBA8, GL_RGB5_A1, GL_RGBA2 };
|
|
glTexID = GLInterface.GetTextureID();
|
|
glActiveTexture(GL_TEXTURE15);
|
|
glBindTexture(GL_TEXTURE_2D, glTexID);
|
|
int size = std::max(w, h);
|
|
int bits = 0;
|
|
while (size) bits++, size >>= 1;
|
|
internalType = type;
|
|
if (type == Indexed) mipmapped = false;
|
|
mWidth = w;
|
|
mHeight = h;
|
|
|
|
glTexStorage2D(GL_TEXTURE_2D, mipmapped? bits : 1, gltypes[type], w, h);
|
|
glBindTexture(GL_TEXTURE_2D, 0);
|
|
glActiveTexture(GL_TEXTURE0);
|
|
this->mipmapped = mipmapped;
|
|
return glTexID;
|
|
}
|
|
|
|
|
|
//===========================================================================
|
|
//
|
|
// Loads the texture image into the hardware
|
|
//
|
|
//===========================================================================
|
|
|
|
unsigned int FHardwareTexture::LoadTexture(const unsigned char * buffer)
|
|
{
|
|
return LoadTexturePart(buffer, 0, 0, mWidth, mHeight);
|
|
}
|
|
|
|
unsigned int FHardwareTexture::LoadTexture(FBitmap& bmp)
|
|
{
|
|
return LoadTexture(bmp.GetPixels());
|
|
}
|
|
|
|
//===========================================================================
|
|
//
|
|
// Loads the texture image into the hardware
|
|
//
|
|
//===========================================================================
|
|
|
|
unsigned int FHardwareTexture::LoadTexturePart(const unsigned char* buffer, int x, int y, int w, int h)
|
|
{
|
|
if (glTexID == 0) return 0;
|
|
|
|
int srcformat = internalType == Indexed ? GL_RED : GL_BGRA;// TexFormat[gl_texture_format];
|
|
|
|
glActiveTexture(GL_TEXTURE15);
|
|
glBindTexture(GL_TEXTURE_2D, glTexID);
|
|
|
|
if (internalType == Indexed) glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
|
|
|
|
glTexSubImage2D(GL_TEXTURE_2D, 0, x, y, w, h, srcformat, GL_UNSIGNED_BYTE, buffer);
|
|
if (mipmapped) glGenerateMipmap(GL_TEXTURE_2D);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, 0);
|
|
glActiveTexture(GL_TEXTURE0);
|
|
if (internalType == Indexed) glPixelStorei(GL_UNPACK_ALIGNMENT, 4);
|
|
return glTexID;
|
|
}
|
|
|
|
//===========================================================================
|
|
//
|
|
// Destroys the texture
|
|
//
|
|
//===========================================================================
|
|
FHardwareTexture::~FHardwareTexture()
|
|
{
|
|
if (glTexID != 0) glDeleteTextures(1, &glTexID);
|
|
}
|
|
|
|
|
|
unsigned int FHardwareTexture::GetTextureHandle()
|
|
{
|
|
return glTexID;
|
|
}
|
|
|
|
|