2

Graphics acceleration error - BlackBerry 9900 Simulator

A problem was detected with your current graphics acceleration settings. An OpenGL 1.x+ compatible video card with recent video drivers is required for graphics acceleration. Please try a lower graphics acceleration setting by navigating to the view menu.

The simuator will now revert back to software rendering.

Could not create texture (err=0x501)

I read this but I got stuck at the same problem where answer of this stopped.

How I can handle this issue?

Community
  • 1
  • 1

4 Answers4

3
fledge /graphics-acceleration=0 
Spudley
  • 166,037
  • 39
  • 233
  • 307
Alexey Vesnin
  • 625
  • 13
  • 16
  • 2
    To expand on this, if you add this flag (`/graphics-acceleration=0`) at the end of `9900.bat` (in the dir you installed the emulator in) this should force it to work. – Matt Andrews Dec 17 '12 at 15:06
2

You can hand edit the BlackBerry smartphone simulator configuration file to disable graphics acceleration. Look in C:\Users\YOUR_USERNAME\net\rim\fledge-2 and you should see a bunch of .conf files for the simulators you have installed. Open fledge-saved.conf in a text editor and change (3 to 0):

<BodyBuilder::opengl-acceleration>3</BodyBuilder::opengl-acceleration>

to:

<BodyBuilder::opengl-acceleration>0</BodyBuilder::opengl-acceleration>

That will disable graphics acceleration.

MSohm
  • 815
  • 6
  • 11
1

If you don't find that tag then just paste the tag with the value 0 in your fledge-settings.conf file.

sree
  • 11
  • 1
1

like MSohm said, you can disabled graphic acceleration through C:\Users\YOUR_USERNAME\net\rim\fledge-2 set

<BodyBuilder::opengl-acceleration>3</BodyBuilder::opengl-acceleration>

to

<BodyBuilder::opengl-acceleration>0</BodyBuilder::opengl-acceleration>

If you can't find the tag already in the file, just add the setting

<BodyBuilder::opengl-acceleration>0</BodyBuilder::opengl-acceleration>

before </fledge-configuration>

hope this helps. in my case, I couldn't find the setting, and I just add it, and it works fine.

Nate
  • 31,017
  • 13
  • 83
  • 207
Rangga
  • 11
  • 3