GSRendererNull.cpp
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2005 Gabest
  3.  * http://www.gabest.org
  4.  *
  5.  *  This Program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2, or (at your option)
  8.  *  any later version.
  9.  *   
  10.  *  This Program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13.  *  GNU General Public License for more details.
  14.  *   
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with GNU Make; see the file COPYING.  If not, write to
  17.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  18.  *  http://www.gnu.org/copyleft/gpl.html
  19.  *
  20.  */
  21. #include "StdAfx.h"
  22. #include "GSRendererNull.h"
  23. GSRendererNull::GSRendererNull(HWND hWnd, HRESULT& hr)
  24. : GSRenderer<NULLVERTEX>(256, 256, hWnd, hr)
  25. {
  26. }
  27. GSRendererNull::~GSRendererNull()
  28. {
  29. }
  30. void GSRendererNull::VertexKick(bool fSkip)
  31. {
  32. NULLVERTEX v;
  33. m_vl.AddTail(v);
  34. __super::VertexKick(fSkip);
  35. }
  36. int GSRendererNull::DrawingKick(bool fSkip)
  37. {
  38. NULLVERTEX v;
  39. switch(m_PRIM)
  40. {
  41. case 3: // triangle list
  42. m_vl.RemoveAt(0, v);
  43. m_vl.RemoveAt(0, v);
  44. m_vl.RemoveAt(0, v);
  45. break;
  46. case 4: // triangle strip
  47. m_vl.RemoveAt(0, v);
  48. m_vl.GetAt(0, v);
  49. m_vl.GetAt(1, v);
  50. break;
  51. case 5: // triangle fan
  52. m_vl.GetAt(0, v);
  53. m_vl.RemoveAt(1, v);
  54. m_vl.GetAt(1, v);
  55. break;
  56. case 6: // sprite
  57. m_vl.RemoveAt(0, v);
  58. m_vl.RemoveAt(0, v);
  59. break;
  60. case 1: // line
  61. m_vl.RemoveAt(0, v);
  62. m_vl.RemoveAt(0, v);
  63. break;
  64. case 2: // line strip
  65. m_vl.RemoveAt(0, v);
  66. m_vl.GetAt(0, v);
  67. break;
  68. case 0: // point
  69. m_vl.RemoveAt(0, v);
  70. break;
  71. default:
  72. ASSERT(0);
  73. m_vl.RemoveAll();
  74. return 0;
  75. }
  76. if(!fSkip)
  77. {
  78. m_perfmon.IncCounter(GSPerfMon::c_prim, 1);
  79. }
  80. return 0;
  81. }
  82. void GSRendererNull::Flip()
  83. {
  84. FlipInfo rt[2];
  85. FinishFlip(rt);
  86. }
  87. void GSRendererNull::EndFrame()
  88. {
  89. }