xserver-xorg-video-intel: Changes to 'upstream-experimental'

2013-01-21 Thread Timo Aaltonen
 NEWS |   21 
 autogen.sh   |4 
 configure.ac |6 -
 src/intel_driver.c   |   19 +++-
 src/sna/gen6_render.c|3 
 src/sna/gen7_render.c|3 
 src/sna/kgem.c   |   43 +
 src/sna/sna.h|2 
 src/sna/sna_accel.c  |  209 +++
 src/sna/sna_composite.c  |2 
 src/sna/sna_damage.c |6 -
 src/sna/sna_display.c|2 
 src/sna/sna_dri.c|9 +-
 src/sna/sna_driver.c |4 
 src/sna/sna_glyphs.c |2 
 src/sna/sna_render.h |1 
 src/sna/sna_tiling.c |4 
 src/sna/sna_trapezoids.c |3 
 test/Makefile.am |9 +-
 test/mkvsync.sh  |   27 ++
 20 files changed, 213 insertions(+), 166 deletions(-)

New commits:
commit a88a9b9a59fa2d5fd427fa6e1f74fb9844379264
Author: Chris Wilson ch...@chris-wilson.co.uk
Date:   Sun Jan 20 12:06:09 2013 +

2.20.19 release

diff --git a/NEWS b/NEWS
index e9dd6e4..9fa9009 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,24 @@
+Release 2.20.19 (2013-01-20)
+
+A quick release as the last broke USB DisplayLink slave outputs badly. The
+performance of those displays was unusable due to a inadvertent change that
+caused us to flush the entire scanout over the USB for every drawing
+operation.
+
+ * Implement the GNOME Build API. A couple of minor changes to make
+   integrators and distributors lives a little easier, or at least more
+   consistent.
+
+ * Correctly offset inplace trapezoids for subwindows, such as the GTK+
+   close button after it has a background image uploaded.
+
+ * Explicitly prevent ring-switching for synchronized rendering to
+   scanouts (for vsync).
+
+ * Clip dirty region to slave pixmaps (otherwise UDL is nigh unusuable)
+   https://bugs.freedesktop.org/show_bug.cgi?id=59539
+
+
 Release 2.20.18 (2013-01-16)
 
 A bunch of miscellaneous fixes for assertion failures and various
diff --git a/configure.ac b/configure.ac
index e93fd88..317bc6d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ([2.60])
 AC_INIT([xf86-video-intel],
-[2.20.18],
+[2.20.19],
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 [xf86-video-intel])
 AC_CONFIG_SRCDIR([Makefile.am])

commit 7822bbacbece6fcb2e12863cd6c7a53ab614c37c
Author: Chris Wilson ch...@chris-wilson.co.uk
Date:   Sun Jan 20 11:43:49 2013 +

test: Add script to generate source file for testing vsync

Courtesy of an original script by Mark Schreiber,
https://bugs.freedesktop.org/show_bug.cgi?id=59606

diff --git a/test/Makefile.am b/test/Makefile.am
index 96c87f8..c1dd0e9 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -35,4 +35,11 @@ libtest_la_SOURCES = \
dri2.h \
$(NULL)
 
-EXTRA_DIST = README
+vsync.avi: mkvsync.sh
+   ./mkvsync.sh $@
+
+clean-vsync-avi:
+   rm -rf vsync.avi .build.tmp
+
+EXTRA_DIST = README mkvsync.sh
+clean-local: clean-vsync-avi
diff --git a/test/mkvsync.sh b/test/mkvsync.sh
new file mode 100755
index 000..dd96ad8
--- /dev/null
+++ b/test/mkvsync.sh
@@ -0,0 +1,27 @@
+#!/bin/bash
+
+OUT=$1
+[ -n $OUT ] || OUT=vsync.avi
+
+TMP=.build.tmp
+
+rm -rf ${TMP}
+mkdir ${TMP}
+convert -size 640x480 -depth 24 canvas:black png24:${TMP}/black.png
+convert -size 640x480 -depth 24 canvas:white png24:${TMP}/white.png
+
+mkdir ${TMP}/anim
+
+for ((a=0; $a  1000; a=$a+2)); do
+   ln -s ../black.png ${TMP}/anim/$a.png
+done
+
+for ((a=1; $a  1000; a=$a+2)); do
+   ln -s ../white.png ${TMP}/anim/$a.png
+done
+
+mencoder mf://${TMP}/anim/*.png -v -vf-clr -mf fps=60 -o ${OUT} -ovc lavc
+exitcode=$?
+rm -rf ${TMP}
+
+exit ${exitcode}

commit 9329d8755981989ccbe66df6085fbab7c809a2c6
Author: Chris Wilson ch...@chris-wilson.co.uk
Date:   Sun Jan 20 10:14:21 2013 +

sna: Make DEBUG_SYNC a configure option

As it is advisable to combined the synchronous rendering debug option
with other debugging options, it is more convenient to make it into a
configure option: --enable-debug=sync

Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk

diff --git a/configure.ac b/configure.ac
index ff26462..e93fd88 100644
--- a/configure.ac
+++ b/configure.ac
@@ -418,6 +418,9 @@ if test x$DEBUG != xno; then
AC_DEFINE([HAVE_VALGRIND], 1, [Use valgrind intrinsics to 
suppress false warnings])
fi
 fi
+if test x$DEBUG = xsync; then
+   AC_DEFINE(DEBUG_SYNC,1,[Enable synchronous rendering for debugging])
+fi
 if test x$DEBUG = xmemory; then
AC_DEFINE(DEBUG_MEMORY,1,[Enable memory debugging])
 fi
diff --git a/src/sna/kgem.c b/src/sna/kgem.c
index 89558af..49815e7 100644
--- a/src/sna/kgem.c
+++ b/src/sna/kgem.c
@@ -75,6 +75,10 @@ search_snoop_cache(struct kgem *kgem, unsigned int 
num_pages, unsigned flags);
 #define DBG_NO_HANDLE_LUT 0
 #define DBG_DUMP 0
 
+#ifndef 

xserver-xorg-video-intel: Changes to 'ubuntu'

2013-01-21 Thread Timo Aaltonen
 debian/changelog |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 8818e93079e9f0f31032fd2b131533e1271d1f30
Author: Timo Aaltonen tjaal...@ubuntu.com
Date:   Mon Jan 21 10:18:46 2013 +0200

release to raring

diff --git a/debian/changelog b/debian/changelog
index e022eeb..2eadae2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-xserver-xorg-video-intel (2:2.20.19-0ubuntu1) UNRELEASED; urgency=low
+xserver-xorg-video-intel (2:2.20.19-0ubuntu1) raring; urgency=low
 
   * Merge from unreleased debian git
   * rules: Use SNA as the default acceleration method.
 
- -- Timo Aaltonen tjaal...@ubuntu.com  Mon, 21 Jan 2013 09:37:07 +0200
+ -- Timo Aaltonen tjaal...@ubuntu.com  Mon, 21 Jan 2013 10:18:31 +0200
 
 xserver-xorg-video-intel (2:2.20.19-1) UNRELEASED; urgency=low
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1txcc3-0008k0...@vasks.debian.org



Bug#692814: systemd starts gdm3 correctly

2013-01-21 Thread Praveen A
After switching to systemd, I'm able to start gdm3 during boot. So it
could be the way sysvinit is trying to start X server that is causing
problems.

-- 
പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍
You have to keep reminding your government that you don't get your
rights from them; you give them permission to rule, only so long as
they follow the rules: laws and constitution.


Bug#698345: xorg: All attempts at connecting a remote X server to a SPARC host fail, irrespective of its architecture.

2013-01-21 Thread Mark Morgan Lloyd

Can you get a tcpdump trace?


I should be able to: if I bypass XDMCP it should be a manageable size as 
an attachment (even if I can't make sense of it enough to cut off the 
earlier part of the session).


--
Mark Morgan Lloyd
markMLl .AT. telemetry.co .DOT. uk

[Opinions above are the author's, not those of his employers or colleagues]


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50fd2670.6020...@telemetry.co.uk



[bts-link] source package libdrm

2013-01-21 Thread bts-link-upstream
#
# bts-link upstream status pull for source package libdrm
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user bts-link-upstr...@lists.alioth.debian.org

# remote status report for #698197 (http://bugs.debian.org/698197)
# Bug title: libdrm-intel1: i845g - EIR stuck: 0x0010, masking
#  * https://bugs.freedesktop.org/show_bug.cgi?id=59436
#  * remote status changed: (?) - NEW
usertags 698197 + status-NEW

thanks


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20130121164028.26803.21828.btsl...@sonntag.debian.org



Avira Antivirus, la solucion a los problemas de virus

2013-01-21 Thread Claudia Rodriguez
Buenos Dias,

Cosim TI(www.cosimti.com), empresa lider en seguridad de la
informacion, con más de 14 años en el negocio, 
ahora cuenta con la representacion del Antivirus Avira en Bolivia...

Le mando este mail para hacerle conocer los paquetes Avira Antivirus,
para empresa pequeñas, medianas y grandes.


Si desea que le enviemos una cotizacion, favor envienos los siguientes
datos:

- Nombre o Empresa
- Cantidad de pcs a proteger
- Tipo de Empresa

E-Mail: lrosa...@cosimti.com


Paquetes Empresariales Avira Antivirus:

- Avira NetWork Bundle:

* Avira Professional.- Seguridad para Pc's clientes.
* Avira Server.- Seguridad para Servidor de Archivos
* Avira System Management Center(SMC).- Administracion 
Centralizada.

- Avira Netgate Bundle:
 
* Avira Professional.- Seguridad para Pc's clientes.
* Avira Server.- Seguridad para Servidor de Archivos
* Avira System Management Center(SMC).- Administracion 
Centralizada.
* Avira AntiVir MailGate - la protección perfecta para emails
directamente en el gateway
* Avira AntiVir WebGate - asegura la transferencia de datos 
desde
Internet
 
- Avira Business Bundle (A partir de 100 licencias)
 
* Avira Professional.- Seguridad para Pc's clientes.
* Avira Server.- Seguridad para Servidor de Archivos
* Avira System Management Center(SMC).- Administracion 
Centralizada.
* Avira AntiVir Exchange Server inkl. AntiSpam - la protección
perfecta 
para emails directamente en el gateway
 
- Avira Campus (Para Universidades y Colegios)

* Avira AntiVir Professional (Windows y Unix)
* Avira AntiVir Server (Windows y Unix)
* Avira AntiVir MailGate (Unix)
* Avira AntiVir WebGate (Unix)
* Avira Security Management Center
* Avira AntiVir Mobile
* Optional: Avira AntiVir Exchange inkl. Avira AntiSpam
--

Si desea que le enviemos una cotizacion, favor envienos los siguientes
datos:

- Nombre de su empresa
- Cantidad de licencias
- Que desea proteger? (Servidor de Correo,Servidor Web,Servidor de
Archivos, Pc' Clientes,)

Para cualquier duda o consulta, contactenos a la siguientes
direcciones que aparecen.
 
Saludos Cordiales

Claudia Rodriguez
Asistente de Ventas
E-Mail: clau...@cosimti.com
Telf: (591)(3)3201395. Cel: 70865319
Web: www.cosimti.com
Direccion: Av. Roca y Coronado calle siriono #250 (frente fexpocruz)
--
Si desea quitar su e-mail de nuestras listas, envie un mensaje a
qui...@cosimti.com con el asunto QUITAR DIRECCION.
--


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/0185c0e74a6d6a3f82d554816f06c...@ofertasbolivia.net



Bug#675977: Bump...

2013-01-21 Thread Bryan Hundven
Last message in september of 2012. Any update on when this will get at
least into unstable?

-Bryan


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAJ+oik3juuaNePwaGnH98C2LqguN-W-ha=qnxwyt205fevg...@mail.gmail.com