Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (406)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  AffineTransform with openGL Pipeline slower than without  (Read 1667 times)
0 Members and 1 Guest are viewing this topic.
Offline quietschie

Junior Newbie





« Posted 2012-02-01 16:46:18 »

Hi Everyone,

i'm fetching bufferedImages from camera and want to scale them to whatever window-size is.
Therefore i use the AffineTransform like this
1  
AffineTransform xform2 = AffineTransform.getScaleInstance((double)getWidth() / myWidth, (double)getHeight() / myHeight);

where myWidth / myHeight hold the original Image width/height.
I draw the images via
1  
2  
g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BICUBIC);
g2.drawImage(image, xform2, null);


this works fine with about 25 fps, but when i switch to fullscreen i only got about 7 fps left.
when i run the application with the openGL pipeline Option
1  
-Dsun.java2d.opengl=True
it slows down to 2 fps in small size.

Any idea highly appreciated.

quietschie
Offline theagentd
« Reply #1 - Posted 2012-02-01 16:55:43 »

Might be because you use bicubic interpolation. It's probably not hardware accelerated, but I'm no Java2D expert...

Myomyomyo.
Offline quietschie

Junior Newbie





« Reply #2 - Posted 2012-02-01 17:08:37 »

Wow,
removing this line gave me 3 more fps with openGL and more than the camera fetches without using openGL.

Unfortunately the quality is now poor.
So thank you, theagentd, this will work for my first draft.

But i'm still open for other solutions.

quietschie
Games published by our own members! Check 'em out!
Play the free demo of Revenge of the Titans!
Offline theagentd
« Reply #3 - Posted 2012-02-01 19:23:55 »

Bicubic interpolation is really slow. Each pixel requires 4*4 samples from the image being rendered, so it's a lot of work. You can try VALUE_INTERPOLATION_BILINEAR, which is something in between nearest-neighbor (pixelized) sampling and bicubic sampling (it uses 2*2 samples). It won't look as good as bicubic of course, but it's usually much better than nothing at all.

Myomyomyo.
Offline pitbuller
« Reply #4 - Posted 2012-02-01 20:14:08 »

Bicubic interpolation is really slow. Each pixel requires 4*4 samples from the image being rendered, so it's a lot of work. You can try VALUE_INTERPOLATION_BILINEAR, which is something in between nearest-neighbor (pixelized) sampling and bicubic sampling (it uses 2*2 samples). It won't look as good as bicubic of course, but it's usually much better than nothing at all.
And most important it's hardware accelerated(at least very often).
Offline Cero
« Reply #5 - Posted 2012-02-02 01:22:48 »

on windows java2D should default to directX, which is faster than opengl
generally java2d seems to work better with directx

just my impression though

Offline ra4king

JGO Kernel


Medals: 264
Projects: 2


I'm the King!


« Reply #6 - Posted 2012-02-02 03:17:35 »

You can't really say "DirectX is faster than OpenGL" since they are both just specs and the driver is the one that implements them. Java2D seems to use DirectX better than OpenGL, which makes it run faster on it but that does not mean DirectX is overall "faster" than OpenGL.

Offline Cero
« Reply #7 - Posted 2012-02-02 14:44:40 »

Java2D seems to use DirectX better than OpenGL

Yes I meant this.

java2D using direct vs java2d using opengl: directx seems to win
has nothing to do with real opengl

Offline gouessej

JGO Ninja


Medals: 33
Projects: 1


TUER


« Reply #8 - Posted 2012-02-02 23:39:28 »

quietschie, if you want something faster, look at Slick or Agile2D.

Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (85 views)
2013-05-17 21:29:12

alaslipknot (93 views)
2013-05-16 21:24:48

gouessej (125 views)
2013-05-16 00:53:38

gouessej (118 views)
2013-05-16 00:17:58

theagentd (128 views)
2013-05-15 15:01:13

theagentd (115 views)
2013-05-15 15:00:54

StreetDoggy (159 views)
2013-05-14 15:56:26

kutucuk (181 views)
2013-05-12 17:10:36

kutucuk (181 views)
2013-05-12 15:36:09

UnluckyDevil (188 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.106 seconds with 20 queries.