Mercurial > mm7
comparison Render.h @ 709:af08fc9e29c8
Items (blue dots) on minimap fixed
author | Nomad |
---|---|
date | Thu, 21 Mar 2013 12:37:49 +0200 |
parents | c0bfb386b15f |
children | 735dab8d3c9a 737d7fec67f0 |
comparison
equal
deleted
inserted
replaced
708:af5771589d22 | 709:af08fc9e29c8 |
---|---|
288 void CreateZBuffer(); | 288 void CreateZBuffer(); |
289 void Release(); | 289 void Release(); |
290 void CreateSomeTexture(); | 290 void CreateSomeTexture(); |
291 bool InitializeFullscreen(HWND hWnd); | 291 bool InitializeFullscreen(HWND hWnd); |
292 bool SwitchToWindow(HWND hWnd); | 292 bool SwitchToWindow(HWND hWnd); |
293 char Line2D(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW, unsigned __int16 uColor); | 293 char RasterLine2D(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW, unsigned __int16 uColor); |
294 void ClearZBuffer(int a2, int a3); | 294 void ClearZBuffer(int a2, int a3); |
295 void Clip_v2(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW); | 295 void SetRasterClipRect(unsigned int uX, unsigned int uY, unsigned int uZ, unsigned int uW); |
296 void ParseTargetPixelFormat(); | 296 void ParseTargetPixelFormat(); |
297 bool LockSurface_DDraw4(IDirectDrawSurface4 *pSurface, DDSURFACEDESC2 *pDesc, unsigned int uLockFlags); | 297 bool LockSurface_DDraw4(IDirectDrawSurface4 *pSurface, DDSURFACEDESC2 *pDesc, unsigned int uLockFlags); |
298 bool LockSurface_DDraw2(IDirectDrawSurface2 *pSurface, DDSURFACEDESC *pDesc, unsigned int uLockFlags); | 298 bool LockSurface_DDraw2(IDirectDrawSurface2 *pSurface, DDSURFACEDESC *pDesc, unsigned int uLockFlags); |
299 void CreateDirectDraw(); | 299 void CreateDirectDraw(); |
300 void SetDirectDrawCooperationMode(HWND hWnd, bool bFullscreen); | 300 void SetDirectDrawCooperationMode(HWND hWnd, bool bFullscreen); |
378 unsigned int uDesiredDirect3DDevice; | 378 unsigned int uDesiredDirect3DDevice; |
379 unsigned int uAcquiredDirect3DDevice; | 379 unsigned int uAcquiredDirect3DDevice; |
380 int field_10; | 380 int field_10; |
381 int field_14; | 381 int field_14; |
382 int field_18_locked_pitch; | 382 int field_18_locked_pitch; |
383 int field_1C_clipx; | 383 int raster_clip_x; |
384 int field_20_clipy; | 384 int raster_clip_y; // clipping rect for raster ops |
385 int field_24_width; | 385 int raster_clip_z; // like RasterLine2D for (mini)map |
386 int field_28_height; | 386 int raster_clip_w; |
387 __int16 field_2C[65536]; | 387 __int16 field_2C[65536]; |
388 __int16 field_2002C[65536]; | 388 __int16 field_2002C[65536]; |
389 int field_4002C; | 389 int field_4002C; |
390 int field_40030; | 390 int field_40030; |
391 int *pActiveZBuffer; | 391 int *pActiveZBuffer; |