mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-10 12:01:10 +00:00
- Fixed another texcompression bug
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@164 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
parent
47e6646181
commit
d1982064ee
2 changed files with 6 additions and 1 deletions
5
CHANGES
5
CHANGES
|
@ -1,11 +1,14 @@
|
||||||
This is the changelog for developers, != changelog for the end user
|
This is the changelog for developers, != changelog for the end user
|
||||||
that we distribute with the binaries. (see changelog)
|
that we distribute with the binaries. (see changelog)
|
||||||
|
|
||||||
|
26/04/2007
|
||||||
|
- Fixed another texcompression bug
|
||||||
|
|
||||||
25/04/2007
|
25/04/2007
|
||||||
- Fixed texcompression beeing disabled after each restart
|
- Fixed texcompression beeing disabled after each restart
|
||||||
- Fixed gtk-searchpopup in treeviews
|
- Fixed gtk-searchpopup in treeviews
|
||||||
|
|
||||||
15/03/2007
|
15/04/2007
|
||||||
namespace
|
namespace
|
||||||
- Fixed brushexport2 output float-format (Shaderman)
|
- Fixed brushexport2 output float-format (Shaderman)
|
||||||
|
|
||||||
|
|
|
@ -594,6 +594,8 @@ void Textures_UpdateTextureCompressionFormat()
|
||||||
if(!g_texturesmap->realised())
|
if(!g_texturesmap->realised())
|
||||||
{
|
{
|
||||||
texture_components = g_texture_globals.m_nTextureCompressionFormat;
|
texture_components = g_texture_globals.m_nTextureCompressionFormat;
|
||||||
|
if(texture_components == TEXTURECOMPRESSION_NONE)
|
||||||
|
texture_components = GL_RGBA;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue