X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fimmediate.cpp;h=cf1be08ed7204209d0d572b851ce76b7c58469ff;hp=a387d71b4b283eac45dcd47148dad9e6581fb321;hb=8bc776f177c7cf9d0c6fd9590273f086d38c23ca;hpb=76e338af116120d93d082ad247591ec9adad9233 diff --git a/source/immediate.cpp b/source/immediate.cpp index a387d71b..cf1be08e 100644 --- a/source/immediate.cpp +++ b/source/immediate.cpp @@ -1,10 +1,5 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - +#include "batch.h" +#include "error.h" #include "immediate.h" namespace Msp { @@ -13,23 +8,29 @@ namespace GL { Immediate::Immediate(VertexFormat f): PrimitiveBuilder(array), array(f) -{ } +{ + array.use_buffer(0); +} void Immediate::reset() { if(in_batch) - throw InvalidState("Can't reset Immediate between begin() and end()"); + throw invalid_operation("Immediate::reset"); array.clear(); +} + +void Immediate::begin_() +{ indices.clear(); } void Immediate::end_() { + Batch batch(type); + batch.append(indices); array.apply(); - draw_elements(type, indices.size(), &indices[0]); - - indices.clear(); + batch.draw(); } void Immediate::element_(unsigned i)