Re: requested graphics configuration
Posted by
Sven Gothel on
Jan 17, 2013; 6:17pm
URL: https://forum.jogamp.org/requested-graphics-configuration-tp4027845p4027902.html
On 01/17/2013 07:01 PM, runiter [via jogamp] wrote:
> Also, how can I request rgba of 10/10/10/2 which my graphics card seem to
> support:
>
> 117: GLCaps[wgl vid 0x76 arb: rgba 0xa/a/a/2, opaque, accum-rgba 16/16/16/16,
> dp/st/ms: 24/8/0, dbl, mono , hw, GLProfile[GL3bc/GL3bc.hw], on-scr[.]]
>
> Currently in your code of Ardor3D Jogl the maximum rgb seem to be 8bits each.
In JOGL you would set the requested RGBA value via GLCapabilities
while creating a GLContext/GLAutoDrawable.
RGB888 is default right now, the next closest avail. value will be chosen.
~Sven