3

The following is the Unity test output:

OpenGL vendor string:   NVIDIA Corporation
OpenGL renderer string: GeForce FX 5500/AGP/SSE2
OpenGL version string:  2.1.2 NVIDIA 173.14.30

Not software rendered:    yes
Not blacklisted:          no
GLX fbconfig:             yes
GLX texture from pixmap:  yes
GL npot or rect textures: yes
GL vertex program:        yes
GL fragment program:      yes
GL vertex buffer object:  yes
GL framebuffer object:    yes
GL version is 1.4+:       yes

Unity supported:          no

As you can see, all requirements are fulfilled but my GPU is blacklisted. What can I do about it?

htorque
  • 64,798
Oxwivi
  • 17,849

2 Answers2

4

FX cards seem to be blacklisted:

  // jaytaoko: Balcklist the Geforce FX cards
  if (results->renderer != NULL) {
    char* str = strstr (results->renderer, "GeForce FX");
    if (str != NULL) {
      results->flags |= FLAG_BLACKLISTED;
    }
  }

Here's the reason why: https://bugs.launchpad.net/unity/+bug/772207

htorque
  • 64,798
2

I had the same problem with my Geforce FX 5700, with Unity not starting on Ubuntu 11.04. I found a fix here (and this was my topic). Now I'm running in Ubuntu Classic (including effects) without problems.

Bart
  • 166