Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __CS_ITEXTURE_ITEXLOADERCTX_H__
00021 #define __CS_ITEXTURE_ITEXLOADERCTX_H__
00022
00031 #include "csutil/scf_interface.h"
00032
00033 struct iImage;
00034
00039 struct iTextureLoaderContext : public virtual iBase
00040 {
00041 SCF_INTERFACE(iTextureLoaderContext, 2, 0, 0);
00042
00044 virtual bool HasFlags () = 0;
00046 virtual int GetFlags () = 0;
00047
00049 virtual bool HasImage () = 0;
00051 virtual iImage* GetImage() = 0;
00052
00054 virtual bool HasSize () = 0;
00056 virtual void GetSize (int& w, int& h) = 0;
00057
00059 virtual const char* GetName () = 0;
00060 };
00061
00064 #endif