Home » Posts filed under graphics
Resynthesize Tutorial
Diposkan oleh Unknown on Thursday, April 1, 2010
Amazingly Great Image Fixup from the coming Photoshop CS for free with GIMP
Diposkan oleh Unknown on Wednesday, March 31, 2010
Moblin 2.1 IVI FC Release tested on the MSI Wind U110 (GMA 500/Poulsbo)
Diposkan oleh Unknown on Saturday, January 16, 2010
Well, it's not a lot:
- The resolution was set to 800x600. No other resolutions were detected (xrandr -q)
- The colors were distorted. It looked like 256 colors but randomly exchanged.
- The touchpad was not working. The mouse moved in seemingly opposite or random directions and kept skipping back and forth. I had to use an external mouse to do anything at all.
- The sound wasn't working, thought that might possibly be fixed by disabling power saving, just like in Ubuntu
- Wifi wasn't working. I could not add networks or configure the wifi. " Join other Network" was greyed out. The iwconfig tools have to be started manually from /sbin. They found a network, but I didn't bother to try to set it up with wpa_supplicant manually. A path is not set. wpa_supplicant was already running with 99% cpu usage when I boot.
- Switching to the console and back is impossible. It completely and irreversibly crashes the graphics until a reboot.
- ACPI showed tons of errors in dmesg.
- Trying to suspend crashed the system.
- I wonder if there's an application in the distribution that can take advantage of VAAPI accelerated video decoding. There is a video player. But I had no easy access to the hard drive's partitions (ntfs).
utterly unusable.
The psb driver set up according to my howto works flawlessly compared to that! It interesting how difficult it seems to be for Intel to get its own chipset to work in its own distribution with its own driver.
But, yes. Moblin was very snappy. ;-) (I think that just shows just how cool XFCE is, though.)
More News on Intel and its GMA 500 under Linux
Diposkan oleh Unknown on Sunday, November 1, 2009
How to kick your friends in the face - GMA500
More on Poulsbo GMA 500 - Intel and the Community
Also see the Intel defending response.
Why you're screwed with the Intel Poulsbo Chipset
Diposkan oleh Unknown on Monday, August 10, 2009
NVIDIA Brings Fast GPU Video Acceleration to Linux
Diposkan oleh Unknown on Sunday, November 16, 2008
Then came XvMC and it was not really convincing, because the impact was not too fast and it only worked during playback Mpeg2 AFAIK, not during transconding.
Now came NVIDIA (admittedly a couple weeks after AMD, but therefore publicly and including patches for mplayer) and finally brought out really nice and efficient video acceleration for linux.
My favorite Linux Performance News Site Phoronix checked it out and you can see quite an improvement (CPU usage with first OpenGL, then XVideo and then Nvidia's "VDPAU"(Video Decode and Presentation API).
I hope AMD and Intel will finally come out with some progress in this area, too. Next I would like to see support for encoding, e.g. in Xvid and then maybe even tasks such as gzip, bzip2 (the latter ones didn't even show multi-core support in my tests).
Mode Setting with IntelFB
Diposkan oleh Unknown on Friday, October 24, 2008
Let me begin by stating that the intelfb driver is very old already. And there are issues. Mode setting with "non-CRT" devices usually fails:
intelfb: Non-CRT device is enabled ( LVDS port ). Disabling mode switching.
intelfb: Video mode must be programmed at boot time.
So you need to set the mode very counter-intuitively via the vga kernel commandline. To do that, you need to know the mode. Especially on 64-bit systems the only way to find it out is sudo hwinfo --vbe.
Now you can use a kernel command line like video=intelfb:mode=1280x800 vga=0x0362 and the system should boot with the chosen resolution. Even if you're using a laptop like I am.
This will not work with a kernel earlier than 2.6.28-rc1 from my experience, but maybe you're lucky. If nothing happens, try the newest kernel. And of course feel free to comment in any case. And I think this works only if the intelfb module is compiled-in, not if it's compiled as a module, as it usually is in distribution kernels.
Optimize PNGs
Diposkan oleh Unknown on Sunday, June 15, 2008
OptiPNG is a cool little program to optimize png graphics in size. You can further optimize the size with advpng from the package advancecomp.
E.g.
- optipng -q -o5 scummvm00000.bmp
- advpng -z -4 scummvm00000.png
901k bmp -> 40k png -> 36k png. Lossless.
And a script:
#!/bin/sh
echo "ShrinkBMP v. 0.2 (c) 2008, published under GPL 3.0."
for i in $*; do
echo compressing $i...
optipng -q -o5 "$i"
PNG="`echo $i | sed s/bmp/png/ `"
advpng -z -4 "$PNG"
ls -l $i $PNG
echo ...done.
done;
echo All done: $*