Posted by
runiter on
Jan 15, 2013; 7:38pm
URL: https://forum.jogamp.org/requested-graphics-configuration-tp4027845.html
I found -Dnewt.debug="all" -Djogl.debug="all" -Dnativewindow.debug="all" -Dsun.java2d.noddraw=true very useful.
I noticed that given the following in Ardor3D:
new DisplaySettings(400, 300, 32, 0, 0, 32, 0, 4, false, false)
Jogl generates the following:
requested GLCaps[rgba 0x8/8/8/1, opaque, accum-rgba 0/0/0/0, dp/st/ms: 32/0/4, sample-ext default, dbl, mono , hw, GLProfile[GL3bc/GL3bc.hw], on-scr[.]],
chosen GLCaps[wgl vid 0x13 arb: rgba 0x8/8/8/0, opaque, accum-rgba 16/16/16/16, dp/st/ms: 24/0/2, sample-ext default, dbl, mono , hw, GLProfile[GL3bc/GL3bc.hw], on-scr[.]]]]],
As for the requested part, how does 32bit color buffer bits translates to rgba 8/8/8/1?
As for the chosen part, why did it chose 2 sampling size instead of the 4 which was requested! I have a 3 year old nvidia card in my laptop so I figured it would support 4 sampling easily!