Direct Rendering with RadeonHD 4200

I recently purchased a Dell Inspiron 750, and I have been working on optimizing the graphics. I just got glx working, as evidenced by running glxgears. However, direct rendering is disabled and I do not know why. My Xorg.conf file indicates that it is loading dri and dri2. Here is my Xorg.conf:

Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	ModulePath   "/usr/lib64/xorg/modules/updates"
	ModulePath   "/usr/lib64/xorg/modules"
	FontPath     "/usr/share/fonts/misc:unscaled"
	FontPath     "/usr/share/fonts/TTF/"
	FontPath     "/usr/share/fonts/OTF/"
	FontPath     "/usr/share/fonts/Type1/"
	FontPath     "/usr/share/fonts/100dpi:unscaled"
	FontPath     "/usr/share/fonts/75dpi:unscaled"
	FontPath     "/usr/share/fonts/URW/"
	FontPath     "/usr/share/fonts/cyrillic:unscaled"
	FontPath     "/usr/share/fonts/misc/sgi:unscaled"
	FontPath     "/usr/share/fonts/truetype/"
EndSection

Section "Module"
	Load  "vnc"
	Load  "extmod"
	Load  "glx"
	Load  "dbe"
	Load  "dri2"
	Load  "dri"
	Load  "record"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "NoAccel"            	# <bool>]
        #Option     "AccelMethod"        	# <str>]
        #Option     "offscreensize"      	# <str>]
        #Option     "SWcursor"           	# <bool>]
        #Option     "ignoreconnector"    	# <str>]
        #Option     "forcereduced"       	# <bool>]
        #Option     "forcedpi"           	# <i>
        #Option     "useconfiguredmonitor" 	# <bool>]
        #Option     "HPD"                	# <str>
        #Option     "NoRandr"            	# <bool>]
        #Option     "RROutputOrder"      	# <str>]
        #Option     "DRI"                	# <bool>]
        #Option     "TVMode"             	# <str>]
        #Option     "ScaleType"          	# <str>]
        #Option     "UseAtomBIOS"        	# <bool>]
        #Option     "AtomBIOS"           	# <str>]
        #Option     "UnverifiedFeatures" 	# <bool>]
        #Option     "Audio"              	# <bool>]
        #Option     "AudioStreamSilence" 	# <str>]
        #Option     "HDMI"               	# <str>]
        #Option     "COHERENT"           	# <str>]
        #Option     "ForceLowPowerMode"  	# <bool>]
        #Option     "LowPowerModeEngineClock" 	# <i>
	Identifier  "Card0"
	Driver      "radeonhd"
	BusID       "PCI:1:5:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

I do see these two lines in my Xorg.0.log:


 19031.971] (II) AIGLX: Screen 0 is not DRI2 capable
 19031.971] (II) AIGLX: Screen 0 is not DRI capable

Here is a pastebin of my entire Xorg.0.log in the event that it might be helpful:

19031.782] X.Org X Server 1.9.3 Release Date: 2010-12-13 19031.783] X Pr - Pastebin.com](http://pastebin.com/fhPuJ6Xc)

I appreciate any help. Thanks.

Just came back to mark this as solved. For others having the same problem, these are the changes that I made in my xorg.conf:

Under Section “Device”, I uncommented
Option “DRI”

I then uncommented and added this:
Option “AccelMethod” “UXA”