]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/windows/directx/d3dx11tex/d3dx11tex.factor
use radix literals
[factor.git] / basis / windows / directx / d3dx11tex / d3dx11tex.factor
index 41f2338f3315ecac4b9075afd9a7de2cdee64dc1..281fa9d4331769da8a823cdea6424abf1894a87c 100644 (file)
@@ -5,30 +5,30 @@ IN: windows.directx.d3dx11tex
 
 LIBRARY: d3dx11
 
-CONSTANT: D3DX11_FILTER_NONE             HEX: 00000001
-CONSTANT: D3DX11_FILTER_POINT            HEX: 00000002
-CONSTANT: D3DX11_FILTER_LINEAR           HEX: 00000003
-CONSTANT: D3DX11_FILTER_TRIANGLE         HEX: 00000004
-CONSTANT: D3DX11_FILTER_BOX              HEX: 00000005
-
-CONSTANT: D3DX11_FILTER_MIRROR_U         HEX: 00010000
-CONSTANT: D3DX11_FILTER_MIRROR_V         HEX: 00020000
-CONSTANT: D3DX11_FILTER_MIRROR_W         HEX: 00040000
-CONSTANT: D3DX11_FILTER_MIRROR           HEX: 00070000
-
-CONSTANT: D3DX11_FILTER_DITHER           HEX: 00080000
-CONSTANT: D3DX11_FILTER_DITHER_DIFFUSION HEX: 00100000
-
-CONSTANT: D3DX11_FILTER_SRGB_IN          HEX: 00200000
-CONSTANT: D3DX11_FILTER_SRGB_OUT         HEX: 00400000
-CONSTANT: D3DX11_FILTER_SRGB             HEX: 00600000
+CONSTANT: D3DX11_FILTER_NONE             0x00000001
+CONSTANT: D3DX11_FILTER_POINT            0x00000002
+CONSTANT: D3DX11_FILTER_LINEAR           0x00000003
+CONSTANT: D3DX11_FILTER_TRIANGLE         0x00000004
+CONSTANT: D3DX11_FILTER_BOX              0x00000005
+
+CONSTANT: D3DX11_FILTER_MIRROR_U         0x00010000
+CONSTANT: D3DX11_FILTER_MIRROR_V         0x00020000
+CONSTANT: D3DX11_FILTER_MIRROR_W         0x00040000
+CONSTANT: D3DX11_FILTER_MIRROR           0x00070000
+
+CONSTANT: D3DX11_FILTER_DITHER           0x00080000
+CONSTANT: D3DX11_FILTER_DITHER_DIFFUSION 0x00100000
+
+CONSTANT: D3DX11_FILTER_SRGB_IN          0x00200000
+CONSTANT: D3DX11_FILTER_SRGB_OUT         0x00400000
+CONSTANT: D3DX11_FILTER_SRGB             0x00600000
 TYPEDEF: int D3DX11_FILTER_FLAG
 
-CONSTANT: D3DX11_NORMALMAP_MIRROR_U          HEX: 00010000
-CONSTANT: D3DX11_NORMALMAP_MIRROR_V          HEX: 00020000
-CONSTANT: D3DX11_NORMALMAP_MIRROR            HEX: 00030000
-CONSTANT: D3DX11_NORMALMAP_INVERTSIGN        HEX: 00080000
-CONSTANT: D3DX11_NORMALMAP_COMPUTE_OCCLUSION HEX: 00100000
+CONSTANT: D3DX11_NORMALMAP_MIRROR_U          0x00010000
+CONSTANT: D3DX11_NORMALMAP_MIRROR_V          0x00020000
+CONSTANT: D3DX11_NORMALMAP_MIRROR            0x00030000
+CONSTANT: D3DX11_NORMALMAP_INVERTSIGN        0x00080000
+CONSTANT: D3DX11_NORMALMAP_COMPUTE_OCCLUSION 0x00100000
 TYPEDEF: int D3DX11_NORMALMAP_FLAG
 
 CONSTANT: D3DX11_CHANNEL_RED        1
@@ -45,7 +45,7 @@ CONSTANT: D3DX11_IFF_DDS          4
 CONSTANT: D3DX11_IFF_TIFF         10
 CONSTANT: D3DX11_IFF_GIF          11
 CONSTANT: D3DX11_IFF_WMP          12
-CONSTANT: D3DX11_IFF_FORCE_DWORD  HEX: 7fffffff
+CONSTANT: D3DX11_IFF_FORCE_DWORD  0x7fffffff
 TYPEDEF: int D3DX11_IMAGE_FILE_FORMAT
 
 CONSTANT: D3DX11_STF_USEINPUTBLOB 1