XPLMAvionicsBezelCallback_f
typedef void (* XPLMAvionicsBezelCallback_f)(
float inAmbiantR,
float inAmbiantG,
float inAmbiantB,
void * inRefcon);
This is the prototype for drawing callbacks for custom devices' bezel. You are passed in the red, green, and blue values you can optinally use for tinting your bezel accoring to ambiant light.
Refcon is a unique value that you specify when creating the device, allowing you to slip a pointer to your own data to the callback.
Upon entry the OpenGL context will be correctly set up for you and OpenGL will be in panel coordinates for 2d drawing. The OpenGL state (texturing, etc.) will be unknown.