summaryrefslogtreecommitdiff
path: root/linux-core/nv50_connector.c
diff options
context:
space:
mode:
authorMaarten Maathuis <madman2003@gmail.com>2008-07-20 13:49:18 +0200
committerMaarten Maathuis <madman2003@gmail.com>2008-07-20 13:49:18 +0200
commit65803e53a696347e38d7f6c2c8dc186c6764ff03 (patch)
tree18fe7abbb93a8fa76529c099db4f214a82fe654b /linux-core/nv50_connector.c
parente2ffee839ed7ae6c55a0a8c6bb8ee872ae8a2a70 (diff)
modesetting-101: implement optional scaling and dithering properties
Diffstat (limited to 'linux-core/nv50_connector.c')
-rw-r--r--linux-core/nv50_connector.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/linux-core/nv50_connector.c b/linux-core/nv50_connector.c
index ac5194c0..be133de3 100644
--- a/linux-core/nv50_connector.c
+++ b/linux-core/nv50_connector.c
@@ -187,7 +187,9 @@ int nv50_connector_create(struct drm_device *dev, int bus, int i2c_index, int ty
if (type == CONNECTOR_DVI_D || type == CONNECTOR_DVI_I || type == CONNECTOR_LVDS)
connector->scaling_mode = SCALE_FULLSCREEN;
else
- connector->scaling_mode = SCALE_PANEL;
+ connector->scaling_mode = SCALE_NON_GPU;
+
+ connector->use_dithering = false;
if (i2c_index < 0xf)
connector->i2c_chan = nv50_i2c_channel_create(dev, i2c_index);