X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fengine%2Fe_texture.pas;h=3e578c8088d25b39612a400bded3946147606d2c;hb=9dca47bd3c931ac2de19aa738124ba843072c2b6;hp=62ace83b459098298fa725a7ba72a71c34070314;hpb=d5b991e52d4cbc5981cbeca7b337f1086d33afc2;p=d2df-sdl.git diff --git a/src/engine/e_texture.pas b/src/engine/e_texture.pas index 62ace83..3e578c8 100644 --- a/src/engine/e_texture.pas +++ b/src/engine/e_texture.pas @@ -1,9 +1,8 @@ -(* Copyright (C) DooM 2D:Forever Developers +(* Copyright (C) Doom 2D: Forever Developers * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. + * the Free Software Foundation, version 3 of the License ONLY. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -23,8 +22,8 @@ unit e_texture; interface uses - GL, GLExt, SysUtils, e_log, - ImagingTypes, Imaging, ImagingUtility; + {$INCLUDE ../nogl/noGLuses.inc} + SysUtils, e_log, ImagingTypes, Imaging, ImagingUtility; type GLTexture = record @@ -54,7 +53,7 @@ function LoadTextureImg (var img: TImageData; var Texture: GLTexture; var pWidth implementation uses - Classes, BinEditor, g_options, utils; + Classes, g_options, utils; function AlignP2 (n: Word): Word; @@ -103,12 +102,13 @@ begin Exit; end; + Texture := 0; glGenTextures(1, @Texture); tex.id := Texture; glBindTexture(GL_TEXTURE_2D, Texture); if (tex.glwidth <> tex.width) or (tex.glheight <> tex.height) then - e_WriteLog(Format('NPOT: %u is %ux%u; gl is %ux%u; u=%f; v=%f', [tex.id, Width, Height, tex.glwidth, tex.glheight, tex.u, tex.v]), MSG_NOTIFY); + e_WriteLog(Format('NPOT: %u is %ux%u; gl is %ux%u; u=%f; v=%f', [tex.id, Width, Height, tex.glwidth, tex.glheight, tex.u, tex.v]), TMsgType.Notify); // texture blends with object background glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); @@ -185,7 +185,7 @@ begin if (img.width < 1) or (img.width > 32768) or (img.height < 1) or (img.height > 32768) then begin - e_WriteLog('Error loading texture: invalid image dimensions', MSG_WARNING); + e_WriteLog('Error loading texture: invalid image dimensions', TMsgType.Warning); exit; end; //ConvertImage(img, ifA8R8G8B8); @@ -234,7 +234,7 @@ begin InitImage(img); if not LoadImageFromMemory(pData, dataSize, img) then begin - e_WriteLog('Error loading texture: unknown image format', MSG_WARNING); + e_WriteLog('Error loading texture: unknown image format', TMsgType.Warning); exit; end; try @@ -260,13 +260,13 @@ begin InitImage(img); if not LoadImageFromMemory(pData, dataSize, img) then begin - e_WriteLog('Error loading texture: unknown image format', MSG_WARNING); + e_WriteLog('Error loading texture: unknown image format', TMsgType.Warning); exit; end; try if (img.width < 1) or (img.width > 32768) or (img.height < 1) or (img.height > 32768) then begin - e_WriteLog('Error loading texture: invalid image dimensions', MSG_WARNING); + e_WriteLog('Error loading texture: invalid image dimensions', TMsgType.Warning); exit; end; //ConvertImage(img, ifA8R8G8B8); @@ -321,7 +321,7 @@ begin end; if fs = nil then begin - e_WriteLog('Texture "'+filename+'" not found', MSG_WARNING); + e_WriteLog('Texture "'+filename+'" not found', TMsgType.Warning); exit; end; @@ -357,7 +357,7 @@ begin end; if fs = nil then begin - e_WriteLog('Texture "'+filename+'" not found', MSG_WARNING); + e_WriteLog('Texture "'+filename+'" not found', TMsgType.Warning); exit; end;