/gpu-gles/gpuPlugin.h

http://psx4m.googlecode.com/ · C Header · 156 lines · 101 code · 20 blank · 35 comment · 1 complexity · dd4f338e50f87fdef9ab79bc17b43936 MD5 · raw file

  1. /***************************************************************************
  2. gpu.h - description
  3. -------------------
  4. begin : Sun Mar 08 2009
  5. copyright : (C) 1999-2009 by Pete Bernert
  6. web : www.pbernert.com
  7. ***************************************************************************/
  8. /***************************************************************************
  9. * *
  10. * This program is free software; you can redistribute it and/or modify *
  11. * it under the terms of the GNU General Public License as published by *
  12. * the Free Software Foundation; either version 2 of the License, or *
  13. * (at your option) any later version. See also the license.txt file for *
  14. * additional informations. *
  15. * *
  16. ***************************************************************************/
  17. //*************************************************************************//
  18. // History of changes:
  19. //
  20. // 2009/03/08 - Pete
  21. // - generic cleanup for the Peops release
  22. //
  23. //*************************************************************************//
  24. #ifndef _GPU_PLUGIN_H
  25. #define _GPU_PLUGIN_H
  26. /////////////////////////////////////////////////////////////////////////////
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. extern int use_fsaa;
  31. #if !defined(_WINDOWS) && !defined(__NANOGL__)
  32. #define glOrtho(x,y,z,xx,yy,zz) glOrthof(x,y,z,xx,yy,zz)
  33. #endif
  34. #define PRED(x) ((x << 3) & 0xF8)
  35. #define PBLUE(x) ((x >> 2) & 0xF8)
  36. #define PGREEN(x) ((x >> 7) & 0xF8)
  37. #define RED(x) (x & 0xff)
  38. #define BLUE(x) ((x>>16) & 0xff)
  39. #define GREEN(x) ((x>>8) & 0xff)
  40. #define COLOR(x) (x & 0xffffff)
  41. #ifdef _WINDOWS
  42. #include "Externals.h"
  43. #include "plugin.h"
  44. #include <gl/gl.h>
  45. #else
  46. //#ifndef MAEMO_CHANGES
  47. // #include "psxCommon.h"
  48. //#else
  49. // #include "../psxCommon.h"
  50. //#endif
  51. #include "gpuExternals.h"
  52. #ifdef __NANOGL__
  53. #include <gl/gl.h>
  54. #else
  55. #ifdef SOFT_LINKAGE
  56. #pragma softfp_linkage
  57. #endif
  58. #ifndef MAEMO_CHANGES
  59. #include <gles/gl.h> // for opengl es types
  60. #include <gles/egltypes.h>
  61. #else
  62. #include "gpuStdafx.h"
  63. #endif
  64. #ifdef SOFT_LINKAGE
  65. #pragma no_softfp_linkage
  66. #endif
  67. #endif
  68. #endif
  69. /////////////////////////////////////////////////////////////////////////////
  70. #define CALLBACK
  71. #define bool unsigned short
  72. typedef struct {
  73. u32 ulFreezeVersion;
  74. u32 ulStatus;
  75. u32 ulControl[256];
  76. u8 psxVRam[1024*1024*2];
  77. } GPUFreeze_t;
  78. #define GPUinit GPU_init
  79. #define GPUshutdown GPU_shutdown
  80. #define GPUopen GPU_open
  81. #define GPUclose GPU_close
  82. #define GPUreadData GPU_readData
  83. #define GPUreadDataMem GPU_readDataMem
  84. #define GPUreadStatus GPU_readStatus
  85. #define GPUwriteData GPU_writeData
  86. #define GPUwriteDataMem GPU_writeDataMem
  87. #define GPUwriteStatus GPU_writeStatus
  88. #define GPUdmaChain GPU_dmaChain
  89. #define GPUupdateLace GPU_updateLace
  90. #define GPUmakeSnapshot GPU_makeSnapshot
  91. #define GPUfreeze GPU_freeze
  92. #define GPUgetScreenPic GPU_getScreenPic
  93. #define GPUshowScreenPic GPU_showScreenPic
  94. #define GPUconfigure GPU_configure
  95. #define GPUtest GPU_test
  96. #define GPUabout GPU_about
  97. #define GPUvSinc GPU_vSinc
  98. long CALLBACK GPUinit();
  99. long CALLBACK GPUshutdown();
  100. long CALLBACK GPUopen(int hwndGPU);
  101. long CALLBACK GPUclose();
  102. unsigned long CALLBACK GPUreadData(void);
  103. void CALLBACK GPUreadDataMem(unsigned long * pMem, int iSize);
  104. unsigned long CALLBACK GPUreadStatus(void);
  105. void CALLBACK GPUwriteData(unsigned long gdata);
  106. void CALLBACK GPUwriteDataMem(unsigned long * pMem, int iSize);
  107. void CALLBACK GPUwriteStatus(unsigned long gdata);
  108. long CALLBACK GPUdmaChain(unsigned long * baseAddrL, unsigned long addr);
  109. void CALLBACK GPUupdateLace(void);
  110. void CALLBACK GPUmakeSnapshot(void);
  111. long CALLBACK GPUfreeze(unsigned long ulGetFreezeData,GPUFreeze_t * pF);
  112. long CALLBACK GPUgetScreenPic(u8 * pMem);
  113. long CALLBACK GPUshowScreenPic(u8 * pMem);
  114. //void CALLBACK GPUkeypressed(int keycode);
  115. //void CALLBACK GPUdisplayText(s8 * pText);
  116. //void CALLBACK GPUclearDynarec(void (CALLBACK *callback)(void));
  117. long CALLBACK GPUconfigure(void);
  118. long CALLBACK GPUtest(void);
  119. void CALLBACK GPUabout(void);
  120. void DoSnapShot(void);
  121. void GPUvSinc(void);
  122. void updateDisplay(void);
  123. void updateFrontDisplay(void);
  124. void SetAutoFrameCap(void);
  125. void SetAspectRatio(void);
  126. void CheckVRamRead(int x, int y, int dx, int dy, bool bFront);
  127. void CheckVRamReadEx(int x, int y, int dx, int dy);
  128. void SetFixes(void);
  129. void PaintPicDot(u8 * p,u8 c);
  130. //void DrawNumBorPic(u8 *pMem, int lSelectedSlot);
  131. void ResizeWindow();
  132. ////////////////////////////////////////////////////////////////////////////
  133. #ifdef __cplusplus
  134. }
  135. #endif
  136. #endif // _GPU_INTERNALS_H