ztellman / penumbra

not under active development - idiomatic opengl bindings for clojure
354 stars 43 forks source link

can't init opengl on kubuntu 9.10 with intel graphic card #15

Closed ajuc closed 14 years ago

ajuc commented 14 years ago

My graphic card: Intel Corporation 82G33/G31 Express Integrated Graphics Controller (rev 10)

When I changed one line in window.clj, it works OK.

(Display/create (-> (PixelFormat.) (.withSamples 4)))) to (Display/create (-> (PixelFormat.) (identity) ))) ;;;(.withSamples 4)

ztellman commented 14 years ago

You're actually the second person to run into that today. I need to make minimal assumptions about the hardware until I can actually test them. I'll check in a fix tonight, thanks for the report.

ztellman commented 14 years ago

Fixed.