Bug 372 - glDrawElementsInstancedEXT has no VBO version
Summary: glDrawElementsInstancedEXT has no VBO version
Status: VERIFIED INVALID
Alias: None
Product: Jogl
Classification: JogAmp
Component: core (show other bugs)
Version: 1
Hardware: All all
: P3 normal
Assignee: Sven Gothel
URL:
Depends on:
Blocks:
 
Reported: 2009-05-01 12:16 CEST by Sven Gothel
Modified: 2010-11-19 12:48 CET (History)
0 users

See Also:
Type: DEFECT
SCM Refs:
Workaround: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Sven Gothel 2010-03-24 07:51:46 CET


---- Reported by kitfox 2009-05-01 12:16:37 ----

According to the OpenGL docs, the method

glDrawElementsInstancedEXT

is only valid when using VBOs.  However, JOGL only provides an immediate mode
version of this method.  For this method to be useful, it's signature needs to
be changed to use VBOs instead of being passed a buffer.



--- Bug imported by sgothel@jausoft.com 2010-03-24 07:51 EDT  ---

This bug was previously known as _bug_ 372 at https://jogl.dev.java.net/bugs/show_bug.cgi?id=372
Comment 1 Sven Gothel 2010-11-19 12:48:25 CET
public void glDrawElementsInstanced(int mode, int count, int type, Buffer indices, int primcount);

http://www.opengl.org/sdk/docs/man3/xhtml/glDrawElementsInstanced.xml


ain't right ?
don't see any problems (anymore) .. also don't see the VBO relation.