diff options
author | yuvalt <yuvalt@svn> | 2009-09-28 11:22:33 +0000 |
---|---|---|
committer | yuvalt <yuvalt@svn> | 2009-09-28 11:22:33 +0000 |
commit | 06626487ad04850a6bb66ed55aced8c62f855f4e (patch) | |
tree | 0c4e4856ce98b26b37f09afba0f1f3481dbc94cd /guilib/TextureDX.cpp | |
parent | 7ce41e8e293e15aa067dd691517ddb3fab2b3adf (diff) |
support DXT5 textures with a new texture bundle(r)
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23209 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/TextureDX.cpp')
-rw-r--r-- | guilib/TextureDX.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guilib/TextureDX.cpp b/guilib/TextureDX.cpp index 7ed3c05816..b596b3c6a3 100644 --- a/guilib/TextureDX.cpp +++ b/guilib/TextureDX.cpp @@ -29,10 +29,10 @@ /************************************************************************/ /* CDXTexture */ /************************************************************************/ -CDXTexture::CDXTexture(unsigned int width, unsigned int height, unsigned int BPP) -: CBaseTexture(width, height, BPP) +CDXTexture::CDXTexture(unsigned int width, unsigned int height, unsigned int BPP, unsigned int format) +: CBaseTexture(width, height, BPP, format) { - Allocate(m_imageWidth, m_imageHeight, m_nBPP); + Allocate(m_imageWidth, m_imageHeight, m_nBPP, m_format); } CDXTexture::~CDXTexture() |