search for: dithering_atom

Displaying 2 results from an estimated 2 matches for "dithering_atom".

2009 Aug 12
4
TV-out modesetting DDX patches
[PATCH 1/3] kms: Don't hardcode the output properties [PATCH 2/3] kms: Implement output->get_property when RandR1.3 is available. [PATCH 3/3] kms: Add TV-out support src/drmmode_display.c | 403 ++++++++++++++++++++++++++++++++----------------- 1 files changed, 261 insertions(+), 142 deletions(-)
2008 Jul 06
3
[Bug 16624] New: invalid pointer past to RRChangeOutputProperty
...at mailmij.org QAContact: xorg-team at lists.x.org CC: keithp at keithp.com Created an attachment (id=17547) --> (http://bugs.freedesktop.org/attachment.cgi?id=17547) proposed patch for the issue In nv_output: error = RRChangeOutputProperty(output->randr_output, dithering_atom, XA_INTEGER, 32, PropModeReplace, 1, &nv_output->dithering,FALSE, FALSE); &nv_output->dithering is a Boolean, but the property is set up as int32. On big endian systems, this results in the property set being 0x1000000 instead of 0x1. This curr...