diff Engine/Graphics/IRender.h @ 2572:d87bfbd3bb3b

Step towards unification of Texture and RGBTexture (class Image)
author a.parshin
date Sat, 05 Mar 2016 01:51:54 +0200
parents c674d547cc7c
children 0c67be4ec900
line wrap: on
line diff
--- a/Engine/Graphics/IRender.h	Mon Oct 05 00:19:13 2015 +0200
+++ b/Engine/Graphics/IRender.h	Sat Mar 05 01:51:54 2016 +0200
@@ -70,8 +70,8 @@
     virtual void CreditsTextureScroll(unsigned int pX, unsigned int pY, int move_X, int move_Y, struct RGBTexture *pTexture) = 0;
 
     virtual void DrawTextureNew(float u, float v, struct Texture *) = 0;
-    virtual void DrawTextureNew(float u, float v, struct RGBTexture *) = 0;
-    virtual void DrawTextureRGB(unsigned int uOutX, unsigned int uOutY, struct RGBTexture *a4) = 0;
+    virtual void DrawTextureNew(float u, float v, struct Image *) = 0;
+    virtual void DrawTextureAlphaNew(float u, float v, struct Image *) = 0;
     virtual void DrawTextureIndexed(signed int x, signed int y, struct Texture *tex) = 0;
 
     virtual void ZBuffer_Fill_2(signed int a2, signed int a3, struct Texture *pTexture, int a5) = 0;