Ignore:
Timestamp:
Mar 28, 2008, 5:43:34 PM (16 years ago)
Author:
イグトランス (egtra)
Message:

インクルードガードとその他不要な前処理定義などの削除

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Include/directx9/d3d9types.sbp

    r1 r497  
    11' d3d9types.sbp
    2 
    3 
    4 #ifndef _INC_D3D9TYPES
    5 #define _INC_D3D9TYPES
    6 
    72
    83Const D3DCOLOR_ARGB(a,r,g,b) = ((a and &HFF)<<24) or ((r and &HFF)<<16) or ((g and &HFF)<<8) or (b and &HFF)
     
    263258    D3DRS_FOGTABLEMODE              = 35   'D3DFOGMODE
    264259    D3DRS_FOGSTART                  = 36   'Fog start (for both vertex and pixel fog)
    265     D3DRS_FOGEND                    = 37   'Fog end     
    266     D3DRS_FOGDENSITY                = 38   'Fog density 
     260    D3DRS_FOGEND                    = 37   'Fog end
     261    D3DRS_FOGDENSITY                = 38   'Fog density
    267262    D3DRS_RANGEFOGENABLE            = 48   'Enables range-based fog
    268263    D3DRS_STENCILENABLE             = 52   'BOOL enable/disable stenciling
     
    983978Const D3DLOCK_NOOVERWRITE     = &H00001000
    984979Const D3DLOCK_NOSYSLOCK       = &H00000800
    985 Const D3DLOCK_DONOTWAIT       = &H00004000                 
     980Const D3DLOCK_DONOTWAIT       = &H00004000
    986981Const D3DLOCK_NO_DIRTY_UPDATE = &H00008000
    987982
     
    12041199    PostTransformVertexCacheHitRate As Single
    12051200End Type
    1206 
    1207 
    1208 #endif '_INC_D3D9TYPES
Note: See TracChangeset for help on using the changeset viewer.