Quote:
Originally Posted by climene
Bueno, en realidad yo siempre entro con "sincronizar recursos", y esperé a que descargara todo antes de comenzar a jugar con mis pjs... y se veia horrendo >_<
igual hoy intentaré nuevamente
|
Tenía que responderte, me olvidé.
Encontré esto en una lista de correo:
Quote:
Originally Posted by Kevin Kofler
Peter Gordon <peter <at> thecodergeek.com> writes:
> [1] Full 2-D/3-D acceleration support, video scaling through Xv, and XRender
> acceleration through EXA, but texture compression (S3TC) is not implemented
> due to its legally questionable nature. Neither FSAA nor Anisotropic Filter
> is supported (yet?).
S3TC support can be added by installing a library called libtxc_dxtn, the
drivers know about it and will dlopen it if it's there. Note that that library
is illegal in the US and may be illegal in other countries because S3TC is
patented.
Kevin Kofler
--
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
|
En otras palabras, probá con:
yum install libtxc_dxtn
o con...
yum install libtxc
Y si NADA de eso funciona, podés compilar:
Code:
mkdir ~/build-libxtc
cd ~/build-libxtc
wget http://homepage.hispeed.ch/rscheidegger/dri_experimental/libtxc_dxtn070518.tar.gz
tar -xvf libtxc_dxtn070518.tar.gz
cd libtxc_dxtn
Luego de esto vas a tener que verificar que tengas mesa-common-dev (o uno que se llame similar, no uso Fedora).
Luego:
Code:
make && sudo make install