Hello Guest

Any Last Requests?

  • 102 Replies
  • 94647 Views
Tesselating..?
« Reply #15 on: February 14, 2004, 20:22:50 »
Any reason you don't expose the GLU tesselation routines?  They're awfully handy to me and are exposed cleanly in jogl thru a callback class.  Am I just missing them in LWJGL or are they not here?

I'd like to see tesselating exposed in 0.9; otherwise, would you please explain why you've left it out?

*

Offline elias

  • *****
  • 899
    • http://oddlabs.com
Any Last Requests?
« Reply #16 on: February 14, 2004, 21:32:37 »
They were initially left out because of the ugly hacks needed to callback java from C. However, erikd has implemented most of GLU in pure java for 0.9 instead.

 - elias

*

Offline spasi

  • *****
  • 2261
    • WebHotelier
Any Last Requests?
« Reply #17 on: February 15, 2004, 15:20:33 »
GL.glSupport15(true);
GL.glFinish();

 :wink:

*

Offline elias

  • *****
  • 899
    • http://oddlabs.com
Any Last Requests?
« Reply #18 on: February 15, 2004, 19:28:09 »
:-)

GL_ARB_multisample support is also in for linux and win32.

 - elias

*

Offline princec

  • *****
  • 1933
    • Puppygames
Any Last Requests?
« Reply #19 on: February 15, 2004, 22:56:43 »
Buffer checks 95% complete too. There are just a few that I don't know what to do with at the moment.

Cas :)

Any Last Requests?
« Reply #20 on: February 17, 2004, 15:00:54 »
A while back there was some push towards removing unnecessary extensions to methods.  Is that still the intention, or are the type qualifiers now deemed a necessary evil?

There are still a load of these extensions littered over the place - just scanning through CoreGL11 there is glLoadMatrixf, glLightModeli, glLighti, glPixelStoref, glPixelTransferf, glNormal3b, glScalef, glRotatef...
ellomynameis Charlie Dobbie.

*

Offline elias

  • *****
  • 899
    • http://oddlabs.com
Any Last Requests?
« Reply #21 on: February 17, 2004, 22:24:51 »
Well, we're deliberately not removing the ones that don't have a Buffer to match its type with. Those seem to cover all your mentioned functions except glLoadMatrixf which seems to be all right even so:

        public static void glLoadMatrix(FloatBuffer m) {
                BufferChecks.checkBuffer(m);
                nglLoadMatrixf(m, m.position());
        }
        private static native void nglLoadMatrixf(FloatBuffer m, int m_offset);

(the f version is private)

 - elias

Any Last Requests?
« Reply #22 on: February 18, 2004, 00:50:20 »
Just out of interest, why do you remove the suffixes from methods that are distinguished by Buffer type, but not from methods that are distinguished by primitive type?  Is it just policy, or are you trying to limit the number of automatic widening conversions?

Re: glLoadMatrix, I guess that's already been fixed since last release!  I dunno, fixing things before you're asked... What kind of Open Source project is this? :D
ellomynameis Charlie Dobbie.

*

Offline elias

  • *****
  • 899
    • http://oddlabs.com
Any Last Requests?
« Reply #23 on: February 18, 2004, 08:47:23 »
:-D

Just wait for 0.9, it will definitely please most of you.

Yes, we try to avoid widening conversions by keeping those postfixes.

 - elias

Any Last Requests?
« Reply #24 on: February 24, 2004, 12:20:43 »
Additional methods in Window to allow setting the size and location of already-created windows would be useful.  I know you generally don't like windowed mode, but as people are using it it might be worth adding these methods.

Also useful for Xith3D's CanvasPeer:

http://www.javagaming.org/cgi-bin/JGNetForums/YaBB.cgi?board=xith3d;action=display;num=1077533097;start=0#0
ellomynameis Charlie Dobbie.

*

Offline princec

  • *****
  • 1933
    • Puppygames
Any Last Requests?
« Reply #25 on: February 24, 2004, 12:55:49 »
Yes, we'll add methods to reshape windows in windowed mode, with a clear explanation of why they might have no effect ;)

Cas :)

*

Offline spasi

  • *****
  • 2261
    • WebHotelier
Any Last Requests?
« Reply #26 on: March 02, 2004, 02:10:13 »
I just finished render-to-texture. It works fine (I tested it in Marathon - gave me a 20-30% speed increase :wink: ), but I don't like the way I did it, api-wise. render-to-texture is win32 only, render to depth texture and render to rectangle texture are NV only, so trying to make it system-independent was quite difficult.

I'd like to hear any opinions on the implementation (if anyone has time to check it out) :roll:

*

Offline elias

  • *****
  • 899
    • http://oddlabs.com
Any Last Requests?
« Reply #27 on: March 02, 2004, 08:19:56 »
Well, I don't like the WGL* references obviously. However, because render-to-texture is only supported in win32 (no extension exist for linux and probably not for mac either), we could keep it like it is now, _but_ make it clear that the API will change (and functionality might be cut out) when the GLX/AGL versions are out, even after LWJGL 1.0.

 - elias

*

Offline princec

  • *****
  • 1933
    • Puppygames
Any Last Requests?
« Reply #28 on: March 02, 2004, 10:03:06 »
Another argument for splitting LWJGL functionality up by core and extensions. We should keep the cross-platform cross-vendor stuff in the core and then move out nvidia specific code into lwjgl-nvidia and so on.

Can render-to-texture's public API be made to look implementation agnostic? <edit> Actually it seems like the public API is already implementation agnostic. We need to be able to query for RenderTexture caps in GLContext though in a platform independent manner.

Cas :)

*

Offline spasi

  • *****
  • 2261
    • WebHotelier
Any Last Requests?
« Reply #29 on: March 02, 2004, 12:54:00 »
Quote from: "princec"
Actually it seems like the public API is already implementation agnostic.


Yes, it is. Anything that has to do with WGL is hidden. You just query the pbuffer capabilities and pass a RenderTexture if supported. I just had to create some tokens to hide the WGL ones (one of the stuff I don't like the way it is now).

Quote from: "princec"
We need to be able to query for RenderTexture caps in GLContext though in a platform independent manner.


I think we should keep the query in pbuffer, as they are so closely related. It'll have to clean-up somehow though, maybe later as elias said.