Measuring Buffer 20081015 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Measuring Buffer 20081015 (Default branch)
# 1  
Old 10-15-2008
Measuring Buffer 20081015 (Default branch)

Measuring Buffer is an enhanced version of buffer. It features display of throughput, memory-mapped file I/O for huge buffers, network support, and multithreading. License: GNU General Public License (GPL) Changes:
A regression in the last release may lead to data corruption. This release fixes this issue. Versions 20080910 and 20080507 don't have this issue, so you only need to update now if you just downloaded 20081014. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
GLGENBUFFERS(3G)						    OpenGL 3.3							  GLGENBUFFERS(3G)

NAME
glGenBuffers - generate buffer object names C SPECIFICATION
void glGenBuffers(GLsizei n, GLuint * buffers); PARAMETERS
n Specifies the number of buffer object names to be generated. buffers Specifies an array in which the generated buffer object names are stored. DESCRIPTION
glGenBuffers returns n buffer object names in buffers. There is no guarantee that the names form a contiguous set of integers; however, it is guaranteed that none of the returned names was in use immediately before the call to glGenBuffers. Buffer object names returned by a call to glGenBuffers are not returned by subsequent calls, unless they are first deleted with glDeleteBuffers(). No buffer objects are associated with the returned buffer object names until they are first bound by calling glBindBuffer(). ERRORS
GL_INVALID_VALUE is generated if n is negative. ASSOCIATED GETS
glIsBuffer() SEE ALSO
glBindBuffer(), glDeleteBuffers(), glGet() COPYRIGHT
Copyright (C) 2005 Addison-Wesley. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. http://opencontent.org/openpub/. OpenGL 3.3 03/08/2011 GLGENBUFFERS(3G)