Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: PlayOnLinux asks for 3D acceleration

  1. #1
    Join Date
    May 2008
    Location
    United Kingdom
    Beans
    5,263
    Distro
    Ubuntu

    Question PlayOnLinux asks for 3D acceleration

    I run a program on PlayOnLinux (Wine).

    When I start the program, PlayOnLinux says, "You don't seem to have 3D acceleration. We advise you install and enable it."

    The program works anyway, so no problems.

    However, I wonder whether installing and enabling 3D acceleration would be simple and, if so, how to do it.

    If it's complicated, then I won't bother, as it is absolutely not important for me (I don't play games on the machine).

    I have Lucid 10.04 64-bit running with graphics card Intel GMA950.
    Always make regular backups of your data (and test them).
    Visit Full Circle Magazine for beginners and seasoned Linux enthusiasts.

  2. #2
    Join Date
    Aug 2009
    Beans
    4
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: PlayOnLinux asks for 3D acceleration

    I'm not sure, but i think we need to disable compiz in order to have 3d aceleration on POL.

    cheers,
    Pitosgas

  3. #3
    Join Date
    May 2008
    Location
    United Kingdom
    Beans
    5,263
    Distro
    Ubuntu

    Re: PlayOnLinux asks for 3D acceleration

    Quote Originally Posted by Pitosgas View Post
    I'm not sure, but i think we need to disable compiz in order to have 3d aceleration on POL.
    That's interesting. I've made no changes to Compiz, so it does whatever Lucid set it up to do by default. So, to be safe, I'll just leave it alone.

    Thanks.
    Always make regular backups of your data (and test them).
    Visit Full Circle Magazine for beginners and seasoned Linux enthusiasts.

  4. #4
    Join Date
    Oct 2005
    Location
    U.S.A.
    Beans
    4,164
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: PlayOnLinux asks for 3D acceleration

    Quote Originally Posted by Paddy Landau View Post
    That's interesting. I've made no changes to Compiz, so it does whatever Lucid set it up to do by default. So, to be safe, I'll just leave it alone.

    Thanks.
    By default, Compiz or desktop effects are enabled as soon as you install the restricted driver for your video card; without the restricted driver, they aren't enabled at all. In order for Wine, and by extension PlayOnLinux, to work properly, you need to turn off desktop effects as it "breaks" OpenGL functionality from Wine's perspective.

    Linux User #355330 | Ubuntu User #15618 | Last.FM

  5. #5
    Join Date
    May 2008
    Location
    United Kingdom
    Beans
    5,263
    Distro
    Ubuntu

    Re: PlayOnLinux asks for 3D acceleration

    Quote Originally Posted by cogadh View Post
    By default, Compiz or desktop effects are enabled as soon as you install the restricted driver for your video card; without the restricted driver, they aren't enabled at all.
    Thanks for the clarification. I learn something new every day!

    I don't have a restricted driver, I believe, because System > Administration > Hardware drivers shows "No proprietary drivers are in use on this system."

    Quote Originally Posted by cogadh View Post
    In order for Wine, and by extension PlayOnLinux, to work properly, you need to turn off desktop effects as it "breaks" OpenGL functionality from Wine's perspective.
    Does that mean System > Preferences > Appearance > Visual Effects > None?

    If so, that's already the case for me. It seems that when I use a dual screen (nearly all of the time), then my graphics card doesn't cope with visual effects and they turn off automatically. When I use a single screen, the "Extra" visual effects work fine.
    Always make regular backups of your data (and test them).
    Visit Full Circle Magazine for beginners and seasoned Linux enthusiasts.

  6. #6
    Join Date
    Oct 2005
    Location
    U.S.A.
    Beans
    4,164
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: PlayOnLinux asks for 3D acceleration

    Ah, didn't notice that you have an Intel card. In that particular case, what would be considered the "restricted driver" is already included with Ubuntu by default (Nvidia and ATI drivers are not), hence the "no proprietary drivers..." message. Time to check the basics, then. Open a terminal and run this:
    Code:
    glxinfo | grep direct
    If it comes back saying "Direct Rendering: Yes", then we can stop looking at your graphics card and drivers as the source of the problem.

    Linux User #355330 | Ubuntu User #15618 | Last.FM

  7. #7
    Join Date
    May 2008
    Location
    United Kingdom
    Beans
    5,263
    Distro
    Ubuntu

    Re: PlayOnLinux asks for 3D acceleration

    Quote Originally Posted by cogadh View Post
    glxinfo | grep direct
    The command returns
    Code:
    direct rendering: Yes
    I don't understand the significance of all these things.
    Always make regular backups of your data (and test them).
    Visit Full Circle Magazine for beginners and seasoned Linux enthusiasts.

  8. #8
    Join Date
    Oct 2005
    Location
    U.S.A.
    Beans
    4,164
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: PlayOnLinux asks for 3D acceleration

    That command, glxinfo, spits out information about about your video card and drivers. Adding the "grep direct" filters out all the info except the part that tells us whether or not you actually have 3D acceleration capabilities. If it comes back saying "direct rendering: No", then you do not have 3D acceleration, if it comes back saying "direct rendering: Yes" then you do have 3D acceleration.

    Basically, we just confirmed that there is nothing wrong with your video card or drivers, so the problem must reside with PlayOnLinux or with some kind of configuration option on your system. The only configuration option that I know of that is capable of screwing up 3D acceleration is the desktop effects and you have already confirmed that you have them disabled. So that leaves PlayOnLinux; either it is having some kind of problem, or it is looking for something on your system that you are missing. In searching around, I found multiple references to the fact that you need to install the mesa-utils package to make that message go away. Apparently in prior versions of Ubuntu, it was installed by default, but now it no longer is and POL depends on that to determine the status of your 3D hardware. Open a terminal and run "sudo apt-get install mesa-utils", when the install finishes, try running POL again.

    Linux User #355330 | Ubuntu User #15618 | Last.FM

  9. #9
    Join Date
    May 2008
    Location
    United Kingdom
    Beans
    5,263
    Distro
    Ubuntu

    Re: PlayOnLinux asks for 3D acceleration

    Quote Originally Posted by cogadh View Post
    ... run "sudo apt-get install mesa-utils"
    Thank you for all the clarification.

    It has solved the problem.

    Thank you for taking the time to lead me through this. I'll mark this thread as Solved.
    Always make regular backups of your data (and test them).
    Visit Full Circle Magazine for beginners and seasoned Linux enthusiasts.

  10. #10
    Join Date
    Nov 2008
    Beans
    10

    Re: PlayOnLinux asks for 3D acceleration

    This helped me too! Thank you!

    PlayOnLinx should perhaps suggest installing of mesa-utils or perhaps even depend on it as probably at least of 90% run under POL use 3D capabilities...

Page 1 of 2 12 LastLast

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
  •