10

Is it possible to change the settings of the radeon open source drivers and Mesa 3D graphics library? I am thinking of something similar to Catalyst Control Center that would allow me to control settings such as:

  • toggling VSYNC
  • toggling framebuffering
  • changing 3D acceleration
  • changing aspect ratio / stretching to fit the screen
  • changing power settings

FWIW, my graphics card is a Radeon HD 4350 (RV710) and I am running Ubuntu 14.04.

Glutanimate
  • 21,763
questiontime
  • 111
  • 1
  • 1
  • 7

1 Answers1

8

There are a few GUI tools available to control and monitor AMD open-source graphics under Linux but none of them are as easy to use or install as AMD's CCC:

  1. DriConf - GUI for controlling the direct rendering settings (OpenGL) of all open-source drivers. Pretty hard to use and hasn't been updated since 2006. Phoronix has an overview and comparison to AMD's CCC.

    enter image description here

    DriConf can be found in the 'universe' repository of Ubuntu and can be downloaded from the Software Center:

    Install via the software center

  2. radeon-profile - control power and clock settings on recent kernels (relies on new radeon dynamic power management). Documentation and support may be found in this Phoronix thread

    enter image description here

    enter image description here

    Unfortunately there aren't packages/PPAs available for radeon-profile. You will have to compile it manually.

pgr
  • 482