sivarajankumar / screen3d

Automatically exported from code.google.com/p/screen3d
0 stars 0 forks source link

[Screen/Core] complete Vertex and IndexBuffer implementation #7

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Vertex and Index buffers needs some classes to simply handle and write them :

VertexBufferHandler (concrete container for generic VertexBuffer)
IndexBufferHandler (concrete container for generic IndexBuffer)
VertexBufferFiller (utility class to fill vertex buffer, to order to avoid
vertex format and memory management)
IndexBufferFiller (utility class to fill index buffer, to order to avoid
index size and memory management)

this enhancement requires Screen/Memory/ buffer classes to be performed.

Original issue reported on code.google.com by thoratou@gmail.com on 23 May 2010 at 7:06

GoogleCodeExporter commented 8 years ago
Vertex and Index buffer handler done
Vertex buffer filler implemented without Screen/Memory

Original comment by thoratou@gmail.com on 30 May 2010 at 6:50

GoogleCodeExporter commented 8 years ago

Original comment by thoratou@gmail.com on 27 Aug 2010 at 12:59

GoogleCodeExporter commented 8 years ago
Vertex buffer filler migrated from std::vector to screen::memory::TypedBuffer. 
Still need to implement index buffer filler.

Original comment by thoratou@gmail.com on 31 Jul 2011 at 2:48

GoogleCodeExporter commented 8 years ago
IndexBuffer implementtion done, thanks to TypedBuffer and 
screen::memory::algorithms component part
unittests done, not tested yet on Demo/SFML

Original comment by thoratou@gmail.com on 11 Sep 2011 at 3:27

GoogleCodeExporter commented 8 years ago
Verified on SFML Demo
Works as designed

Original comment by thoratou@gmail.com on 17 Sep 2011 at 2:31