Skip to content

Commit

Permalink
Fix compressed texture size computation.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfonseca committed May 2, 2012
1 parent acc9062 commit fa24288
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 12 deletions.
8 changes: 4 additions & 4 deletions dispatch/d3d9imports.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@
#define D3DFMT_A2B10G10R10_XR_BIAS 119
#endif

#ifndef D3DFMT_ATI1
#define D3DFMT_ATI1 ((D3DFORMAT)MAKEFOURCC('A','T','I','1'))
#ifndef D3DFMT_ATI1N
#define D3DFMT_ATI1N ((D3DFORMAT)MAKEFOURCC('A','T','I','1'))
#endif

#ifndef D3DFMT_ATI2
#define D3DFMT_ATI2 ((D3DFORMAT)MAKEFOURCC('A','T','I','2'))
#ifndef D3DFMT_ATI2N
#define D3DFMT_ATI2N ((D3DFORMAT)MAKEFOURCC('A','T','I','2'))
#endif

#ifndef D3DFMT_AYUV
Expand Down
17 changes: 12 additions & 5 deletions helpers/d3dsize.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,17 +139,24 @@ _getLockSize(D3DFORMAT Format, UINT Width, UINT Height, INT RowPitch, UINT Depth
case D3DFMT_DXT3:
case D3DFMT_DXT4:
case D3DFMT_DXT5:
case D3DFMT_ATI1:
case D3DFMT_ATI2:
Width /= 4;
Height /= 4;
Width = (Width + 3) / 4;
Height = (Height + 3) / 4;
break;

case D3DFMT_ATI1N:
case D3DFMT_ATI2N:
/*
* Because these are unsupported formats, RowPitch is not set to the
* number of bytes between row of blocks, but instead in such way that
* Height * RowPitch will match the expected size.
*/
break;

case D3DFMT_UYVY:
case D3DFMT_R8G8_B8G8:
case D3DFMT_YUY2:
case D3DFMT_G8R8_G8B8:
Width /= 2;
Width = (Width + 1) / 2;
break;

case D3DFMT_NV12:
Expand Down
4 changes: 2 additions & 2 deletions specs/d3d9types.py
Original file line number Diff line number Diff line change
Expand Up @@ -729,8 +729,8 @@
"D3DFMT_BINARYBUFFER",

# Unofficial formats
"D3DFMT_ATI1",
"D3DFMT_ATI2",
"D3DFMT_ATI1N",
"D3DFMT_ATI2N",
"D3DFMT_AYUV",
"D3DFMT_DF16",
"D3DFMT_DF24",
Expand Down
2 changes: 1 addition & 1 deletion wrappers/d3d9trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def enumWrapperInterfaceVariables(self, interface):

def implementWrapperInterfaceMethodBody(self, interface, base, method):
if method.name in ('Unlock', 'UnlockRect', 'UnlockBox'):
print ' if (m_pbData) {'
print ' if (_LockedSize && m_pbData) {'
self.emit_memcpy('(LPBYTE)m_pbData', '(LPBYTE)m_pbData', '_LockedSize')
print ' }'

Expand Down

0 comments on commit fa24288

Please sign in to comment.