Around 17 o'clock on Nov 12, Ted Roden wrote:
> render_color.red = 189; > render_color.green = 182; > render_color.blue = 107; > render_color.alpha = 0xffff; All of the components are represented as 16 bit values; this color is awfully close to black, and when converted to a typical 24 bit visual will be black. Try render_color.red = 189 * 257; render_color.green = 182 * 257; render_color.blue = 107 * 257; render_color.alpha = 0xffff; [EMAIL PROTECTED] XFree86 Core Team SuSE, Inc. _______________________________________________ Render mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/render
