PBuffer.h
上传用户:ghyvgy
上传日期:2009-05-26
资源大小:547k
文件大小:2k
源码类别:

其他游戏

开发平台:

Python

  1. /*
  2. s_p_oneil@hotmail.com
  3. Copyright (c) 2000, Sean O'Neil
  4. All rights reserved.
  5. Redistribution and use in source and binary forms, with or without
  6. modification, are permitted provided that the following conditions are met:
  7. * Redistributions of source code must retain the above copyright notice,
  8.   this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright notice,
  10.   this list of conditions and the following disclaimer in the documentation
  11.   and/or other materials provided with the distribution.
  12. * Neither the name of this project nor the names of its contributors
  13.   may be used to endorse or promote products derived from this software
  14.   without specific prior written permission.
  15. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  19. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  20. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  21. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  22. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  23. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  24. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  25. POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. #ifndef __PBuffer_h__
  28. #define __PBuffer_h__
  29. #define MAX_PFORMATS 256
  30. #define MAX_ATTRIBS  32
  31. class CPBuffer
  32. {
  33. protected:
  34. int m_nWidth;
  35. int m_nHeight;
  36. int m_nFlags;
  37. HDC m_hDC;
  38. HGLRC m_hGLRC;
  39. HPBUFFERARB m_hBuffer;
  40. public:
  41. enum {NoFlags = 0x00, DepthBuffer = 0x01, StencilBuffer = 0x02};
  42. CPBuffer() { m_hBuffer = NULL; }
  43. CPBuffer(int nWidth, int nHeight, int nFlags=(DepthBuffer|StencilBuffer))
  44. {
  45. m_hBuffer = NULL;
  46. Init(nWidth, nHeight);
  47. }
  48. ~CPBuffer() { Cleanup(); }
  49. bool Init(int nWidth, int nHeight, int nFlags=(DepthBuffer|StencilBuffer));
  50. void Cleanup();
  51. void HandleModeSwitch();
  52. int GetWidth() { return m_nWidth; }
  53. int GetHeight() { return m_nHeight; }
  54. int GetFlags() { return m_nFlags; }
  55. HGLRC GetHGLRC() { return m_hGLRC; }
  56. HDC GetHDC() { return m_hDC; }
  57. void MakeCurrent() { if(m_hBuffer) wglMakeCurrent(m_hDC, m_hGLRC); }
  58. };
  59. #endif // __PBuffer_h__