Login  Register

PBO-VBO Usage Hints Warnings

Posted by alicana on Jun 05, 2015; 8:39am
URL: https://forum.jogamp.org/PBO-VBO-Usage-Hints-Warnings-tp4034603.html

Hi All, I have an application,that renders to Texture using PBO like said here (http://www.songho.ca/opengl/gl_pbo.html) and some other drawings that are handled with VBO's.

When I run my application with '-Djogl.debug.DebugGL'  argument, I had the following messages:
GLDebugEvent[ id 0x20071
	type Warning: generic
	severity Unknown (0x826b)
	source GL API
	msg Buffer detailed info: Buffer object 1 (bound to GL_VERTEX_ARRAY_BUFFER_BINDING_ARB, and GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
	when 1433492094161
	source 3.3 (Compat profile, arb, debug, compat[ES2, ES3], FBO, hardware) - 3.3.0 - hash 0x3a3e2405]
GLDebugEvent[ id 0x20071
	type Warning: generic
	severity Unknown (0x826b)
	source GL API
	msg Buffer detailed info: Buffer object 2 (bound to GL_PIXEL_UNPACK_BUFFER_ARB, usage hint is GL_STREAM_DRAW) has been mapped WRITE_ONLY in SYSTEM HEAP memory (fast).
	when 1433493019677
	source 3.3 (Compat profile, arb, debug, compat[ES2, ES3], FBO, hardware) - 3.3.0 - hash 0x7b53df31]
GLDebugEvent[ id 0x20071
	type Warning: generic
	severity Unknown (0x826b)
	source GL API
	msg Buffer detailed info: Buffer object 5 (bound to GL_ARRAY_BUFFER_ARB, usage hint is GL_STREAM_DRAW) will use VIDEO memory as the source for buffer object operations.
	when 1433493070611
	source 3.3 (Compat profile, arb, debug, compat[ES2, ES3], FBO, hardware) - 3.3.0 - hash 0x1aa47147]
I have NVIDIA Quadro FX 570 with the latest driver version. (With old driver version it doesn't print anything like above).

By the way, my app runs well.  

Do you guys think that I'm doing something wrong? Have you ever got any of this messages ?