Hello Guest

GL11.glEnable(ARBPointSprite.GL_POINT_SPRITE_ARB); Crashes my friends computer.

  • 4 Replies
  • 10520 Views

*

Offline Matzon

  • *****
  • 2242
update the drivers - glEnable is benign!

*

Offline rik

  • *
  • 4
Thanks! That was the case. He thought that he had updated the drivers but apparently not. He was using a software called "Driver Magician" for updating his drivers.

I still think it's weird that his computer could crash so severely.
« Last Edit: August 13, 2008, 14:39:52 by rik »

Don't use
Code: [Select]
GL11.glGetString(GL11.GL_EXTENSIONS).contains("GL_ARB_point_sprite")
use
Code: [Select]
GLContext.getCapabilities().GL_ARB_point_sprite
Ciao Matthias

*

Offline rik

  • *
  • 4
Don't use
Code: [Select]
GL11.glGetString(GL11.GL_EXTENSIONS).contains("GL_ARB_point_sprite")
use
Code: [Select]
GLContext.getCapabilities().GL_ARB_point_sprite
Ciao Matthias

Done, Thanks!