Author Topic: Version updates!  (Read 177792 times)

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Version updates!
« Reply #240 on: May 25, 2011, 10:10:56 pm »
New version that fixes a problem when mixing lit and unlit objects: http://www.jpct.net/jpct-ae/download/alpha/jpct_ae.jar

Please note that this version also includes pre-alpha support for GLES2.0. Please don't use it. It's not stable yet and i don't support it right now.

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Version updates!
« Reply #241 on: May 29, 2011, 10:34:51 pm »
Official releases of 1.23 are out for the desktop version as well as for AE: http://www.jpct.net/forum2/index.php/topic,2089.0.html

Have fun!

Offline Thomas.

  • double
  • *****
  • Posts: 833
    • View Profile
Re: Version updates!
« Reply #242 on: July 11, 2011, 08:51:54 am »
Could you fix render to texture (if is possible)? I think that it will be the fastest way in the solution to my problem...
« Last Edit: July 11, 2011, 09:01:08 am by Thomas. »

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Version updates!
« Reply #243 on: July 11, 2011, 02:56:03 pm »
Could you fix render to texture (if is possible)? I think that it will be the fastest way in the solution to my problem...
There's nothing to be fixed, i'm afraid. If it doesn't work, then it's a driver issue. I can't work around this...

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Version updates!
« Reply #244 on: July 12, 2011, 10:07:37 pm »
First alpha version with support for OpenGL ES 2.0 is out: http://www.jpct.de/download/net/jpct-ae_124_alpha.zip

Offline Nemetz

  • int
  • **
  • Posts: 53
    • View Profile
Re: Version updates!
« Reply #245 on: July 13, 2011, 08:29:28 am »
I think what documentaion from privious version, because, i can't find for example GLSLShader class in javadoc.

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Version updates!
« Reply #246 on: July 13, 2011, 08:30:59 am »
No, it's current. But i might have forgotten to add GLSLShader to it. I'll fix this when i'm back home

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Version updates!
« Reply #247 on: July 13, 2011, 09:15:45 pm »
Documentation is fixed now. Please download it again.

Offline Thomas.

  • double
  • *****
  • Posts: 833
    • View Profile
Re: Version updates!
« Reply #248 on: July 15, 2011, 08:02:29 pm »
I have problem with fb.blit(...) in ogl 2. Same code, before without any problem, but now, without any warning or crash, nothing is blitted in the screen

Code: [Select]
onSurfaceChanged(...){
fb = new FrameBuffer(w,h);
blitter = new Blitter(fb); // class where is blitted GUI
}
onDrawFrame(...){
blitter.blitAimCross(...);
}

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Version updates!
« Reply #249 on: July 15, 2011, 08:19:23 pm »
I can't reproduce this. Does the HelloShader-example work fine?

Offline Thomas.

  • double
  • *****
  • Posts: 833
    • View Profile
Re: Version updates!
« Reply #250 on: July 15, 2011, 08:35:26 pm »
yes

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Version updates!
« Reply #251 on: July 15, 2011, 08:47:05 pm »
Ok...can you create a minimal test case to reproduce this problem?

Offline Thomas.

  • double
  • *****
  • Posts: 833
    • View Profile
Re: Version updates!
« Reply #252 on: July 15, 2011, 10:03:28 pm »
I found issue, when I did the example, if you set "Config.farPlane = 2000;" fb.blit(...) transparency does not work... additional color does not work...  is disabled black color as transparent?
edit: sorry, black working, but problem is probably in OPAQUE_BLITTING
image:

ogl 1.1:

ogl 2.0:
« Last Edit: July 13, 2012, 12:32:56 am by Thomas. »

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Version updates!
« Reply #253 on: July 15, 2011, 10:28:52 pm »
The blitting issue should be fixed (some weird accuracy issue with the projection matrix that i last spotted on a GeForce 2MX a decade ago...). Please re-download the zip.  I can't verify that problem with additional color (assuming that you are talking about the addColor in blit())...it seems to work fine for me. I'll have a look at that black-color-opaque-blitting-whatever-issue now...

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Version updates!
« Reply #254 on: July 15, 2011, 10:33:53 pm »
I don't get this OPAQUE_BLITTING-thing...what is the code that produces the output in your screen shots!? Neither of them looks opaque. Is the png-file that you've uploaded the actual texture? Or does the real one contain an alpha channel?