Author Topic: 2 questions  (Read 5367 times)

Bart

  • Guest
2 questions
« on: September 28, 2003, 11:04:25 am »
I have two questions:

1) Does the openGL render works with Linux and other operating systems?
2) Is there a set-method to change the samplingmode?

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: 2 questions
« Reply #1 on: September 28, 2003, 11:59:56 am »
Quote
1) Does the openGL render works with Linux and other operating systems?


It should. There are binaries of LWJGL for Linux or you have to compile it yourself. Have a look at the LWJGL homepage at  http://www.lwjgl.org I never tried it though because i don't have a system running Linux (just FreeBSD... :wink: ).

Quote
2) Is there a set-method to change the samplingmode?
You mean switching between under-/over- and normal sampling without constructing a new FrameBuffer? No, there isn't because each change of the used mode actually requires the construction of a new FrameBuffer (because the backbuffer as well as some minor things are different everytime). Encapsulating this in a innocently looking setXXXX()-method doesn't express this well enough IMO. I promise to have a second look at this decision though.

Bart

  • Guest
2 questions
« Reply #2 on: September 28, 2003, 08:26:42 pm »
Thanks for your help.