<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Kahel OS Forum Tag: 3D - Recent Topics</title>
		<link>http://forum.kahelos.org/tags/3d</link>
		<description>Open for Change</description>
		<language>en-US</language>
		<pubDate>Thu, 29 Jul 2010 20:42:05 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://forum.kahelos.org/search.php</link>
		</textInput>
		<atom:link href="http://forum.kahelos.org/rss/tags/3d/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>dinkyt on "Bad 3D performance in Kahel with Gnome"</title>
			<link>http://forum.kahelos.org/topic/bad-3d-performance-in-kahel-with-gnome#post-202</link>
			<pubDate>Thu, 29 Oct 2009 18:34:34 +0000</pubDate>
			<dc:creator>dinkyt</dc:creator>
			<guid isPermaLink="false">202@http://forum.kahelos.org/</guid>
			<description>&#60;p&#62;Hi ...&#60;/p&#62;
&#60;p&#62;What is Gnome doing with 3D options of a nvidia card? Looks like it&#60;br /&#62;
does something what is not right ...&#60;/p&#62;
&#60;p&#62;My problem ...&#60;br /&#62;
Got a nvidia 9300M videocard and glxgears gives me about 950 fps what is not&#60;br /&#62;
enough to play cool games like Nexuiz or OpenArena ..&#60;br /&#62;
Tried lot of xorg.conf options .. also the options on this forum, but nothing&#60;br /&#62;
help .. always fps around the 900&#60;br /&#62;
On other distributions i never had problems ... so did not understand it.&#60;/p&#62;
&#60;p&#62;Yesterday .. i thought ... lets install KDE ... and looks if it works then.&#60;br /&#62;
And what do u think ... 4300 fps. AN di can play Nexuiz without any problem.&#60;/p&#62;
&#60;p&#62;So ... what happend in Kahel if Gnome start up? Already drop compiz, also not any&#60;br /&#62;
effect.&#60;/p&#62;
&#60;p&#62;Anybody an idea?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>joelbryan on "Enable Kernel Mode Switch (KMS) on Intel Graphics Card"</title>
			<link>http://forum.kahelos.org/topic/enable-kernel-mode-switch-kms-on-intel-graphics-card#post-57</link>
			<pubDate>Wed, 23 Sep 2009 13:18:39 +0000</pubDate>
			<dc:creator>joelbryan</dc:creator>
			<guid isPermaLink="false">57@http://forum.kahelos.org/</guid>
			<description>&#60;p&#62;KMS is the next generation graphics infrastructure that improves the overall video 3D graphics performance and allow to use the latest DRI2 (Direct Rendering Infrastructure 2).&#60;/p&#62;
&#60;p&#62;To enable KMS on Intel Graphics Card on Kahel OS, do the following.&#60;/p&#62;
&#60;p&#62;1. Synchronize your System with the latest Kernel.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;sudo pacman -Syy &#38;amp;&#38;amp; sudo pacman -Syu&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;2. Remove existing graphics subsystem to avoid conflict.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;sudo pacman -Rd dri2proto intel-dri libdrm mesa xf86-video-intel&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;3. Compile and install the latest GIT-version of Intel drivers and 3D graphics systems using 'yaourt'.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;yaourt -S --noconfirm aur/dri2proto-git&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;yaourt -S --noconfirm aur/glproto-git&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;yaourt -S --noconfirm aur/intel-dri-git&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;yaourt -S --noconfirm aur/libdrm-git&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;yaourt -S --noconfirm aur/mesa-git&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;yaourt -S --noconfirm aur/xf86-video-intel-git&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;4. When all goes well, remove existing xorg-video-drivers&#60;/p&#62;
&#60;p&#62;&#60;code&#62;sudo pacman -Rssuuvvcc xorg-video-drivers&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;5. Create a file named 'intel-kms.conf' in /etc/modprobe.d/intel-kms.conf by&#60;/p&#62;
&#60;p&#62;&#60;code&#62;sudo nano /etc/modprobe.d/intel-kms.conf&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Then add the lines, then save.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;options i915 modeset=1&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;6. Edit the file /etc/mkinitcpio.conf and add the 'intel_agp i915' line in the MODULES list.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;sudo nano /etc/mkinitcpio.conf&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;then add 'intel_agp i915' at the very start of the MODULES=(...) list, so the line&#60;/p&#62;
&#60;p&#62;&#60;code&#62;MODULES=(crc32c ...)&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;will become&#60;/p&#62;
&#60;p&#62;&#60;code&#62;MODULES=(intel_agp i915 crc32c ...)&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;7. Include the file '/etc/modprobe.d/intel-kms.conf' in /etc/mkinitcpio.conf FILES list,&#60;br /&#62;
so the line&#60;/p&#62;
&#60;p&#62;&#60;code&#62;FILES=&#38;quot;&#38;quot;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;will become&#60;/p&#62;
&#60;p&#62;`FILES=&#34;/etc/modprobe.d/intel-kms.conf&#34;&#60;/p&#62;
&#60;p&#62;Then save.&#60;/p&#62;
&#60;p&#62;8. Add 'intel_agp i915' in /etc/rc.conf&#60;/p&#62;
&#60;p&#62;&#60;code&#62;sudo nano /etc/rc.conf&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;then the line&#60;/p&#62;
&#60;p&#62;&#60;code&#62;MODULES=(fuse usblp)&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;will become&#60;/p&#62;
&#60;p&#62;&#60;code&#62;MODULES=(fuse usblp intel_agp i915)&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;then save.&#60;/p&#62;
&#60;p&#62;9. Generate a new kernel.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;sudo mkinitpcio -p kernel26&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;10. Then reboot.&#60;/p&#62;
&#60;p&#62;TROUBLESHOOTING&#60;/p&#62;
&#60;p&#62;If you see a message &#34;error inserting i915..&#34; you may have to regenerate your kernel again prior to the reboot and installation of the new kernel and drivers.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
