Results 1 to 2 of 2

Thread: how do you know what X extensions are available?

  1. #1
    Join Date
    Apr 2007
    Beans
    27
    Distro
    Ubuntu 8.04 Hardy Heron

    how do you know what X extensions are available?

    Is there's a command-line tool that prints what X extensions are enabled or disabled, or lists what's supported with the current X server version / graphics driver?

    There should be some way to know, since Compiz can check for Compositing before it turns on.

  2. #2
    Join Date
    Sep 2006
    Location
    Victoria, Australia
    Beans
    Hidden!

    Re: how do you know what X extensions are available?

    Quote Originally Posted by cyran View Post
    Is there's a command-line tool that prints what X extensions are enabled or disabled, or lists what's supported with the current X server version / graphics driver?

    There should be some way to know, since Compiz can check for Compositing before it turns on.
    Hi there,
    to check what extensions are being loaded at X startup, you can run the following command:
    Code:
    cat /var/log/Xorg.0.log | grep -i extensions
    That will grep your xorg log file for the search term 'extensions' (case insensitive because of the -i paramater on grep) and print out to stdout (your terminal output) what it finds.
    For checking what is supported, you can run
    Code:
    glxinfo
    and take a look through that at what glx (server and client) extensions are supported, and what opengl extensions are supported.

    AJ
    Want to find out more about your ubuntu system? see HowTO Ubuntu System
    Want to know a little more about networking? see HOWTO Ubuntu Networking
    Looking for help with something on your ubuntu? see the tutorial of the week sticky


Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •