Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef DrawArrays_INCLUDE_DEFINE
00033 #define DrawArrays_INCLUDE_DEFINE
00034
00035 #include <vlGraphics/DrawCall.hpp>
00036 #include <vlGraphics/TriangleIterator.hpp>
00037
00038 namespace vl
00039 {
00040
00041
00042
00049 class DrawArrays: public DrawCall
00050 {
00051 public:
00052 DrawArrays(): mStart(0), mCount(0)
00053 {
00054 VL_DEBUG_SET_OBJECT_NAME()
00055 mType = PT_TRIANGLES;
00056 mInstances = 1;
00057 }
00058 DrawArrays(EPrimitiveType primitive, int start, int count, int instances=1)
00059 : mStart(start), mCount(count)
00060 {
00061 VL_DEBUG_SET_OBJECT_NAME()
00062 mInstances = instances;
00063 mType = primitive;
00064 }
00065 virtual const char* className() { return "vl::DrawArrays"; }
00066
00067 DrawArrays& operator=(const DrawArrays& other)
00068 {
00069 DrawCall::operator=(other);
00070 mStart = other.mStart;
00071 mCount = other.mCount;
00072 mInstances = other.mInstances;
00073 return *this;
00074 }
00075
00076 virtual ref<DrawCall> clone() const
00077 {
00078 return new DrawArrays( primitiveType(), (int)start(), (int)count(), (int)instances() );
00079 }
00080
00081 virtual void deleteVBOs() {}
00082 virtual void updateVBOs(bool,bool) {}
00083 virtual unsigned int handle() const { return 0; }
00084
00085 virtual void render(bool) const
00086 {
00087
00088 applyPatchParameters();
00089
00090 if ( instances() > 1 && (GLEW_ARB_draw_instanced||GLEW_EXT_draw_instanced) )
00091 VL_glDrawArraysInstanced( primitiveType(), (int)start(), (int)count(), (int)instances() );
00092 else
00093 glDrawArrays( primitiveType(), (int)start(), (int)count() );
00094
00095 #ifndef NDEBUG
00096 unsigned int glerr = glGetError();
00097 if (glerr != GL_NO_ERROR)
00098 {
00099 String msg( (char*)gluErrorString(glerr) );
00100 Log::error( Say("glGetError() [%s:%n]: %s\n") << __FILE__ << __LINE__ << msg );
00101 Log::print(
00102 "OpenGL Geometry Instancing (GL_ARB_draw_instanced) does not support display lists."
00103 "If you are using geometry instancing in conjunction with display lists you will have to disable one of them.\n"
00104 );
00105 VL_TRAP()
00106 }
00107 #endif
00108 }
00109
00111 void setStart(int start) { mStart = start; }
00112
00114 int start() const { return mStart; }
00115
00117 void setCount(int count) { mCount = count; }
00118
00120 int count() const { return mCount; }
00121
00123 void setInstances(int instances) { mInstances = instances; }
00124
00126 int instances() const { return mInstances; }
00127
00128 TriangleIterator triangleIterator() const
00129 {
00130 ref<TriangleIteratorDirect> tid = new TriangleIteratorDirect( primitiveType() );
00131 tid->initialize(mStart, mStart+mCount);
00132 return TriangleIterator(tid.get());
00133 }
00134
00135 IndexIterator indexIterator() const
00136 {
00137 ref<IndexIteratorDrawArrays> iida = new IndexIteratorDrawArrays;
00138 iida->initialize( mStart, mCount );
00139 IndexIterator iit;
00140 iit.initialize( iida.get() );
00141 return iit;
00142 }
00143
00144 protected:
00145 int mStart;
00146 int mCount;
00147 int mInstances;
00148 };
00149
00150 }
00151
00152 #endif
00153