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 (404)
games submitted by our members
Games in WIP (289)
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  
  Drawing unmanaged images to different bitdepths.  (Read 1010 times)
0 Members and 1 Guest are viewing this topic.
Offline Abuse

JGO Coder


Medals: 2


falling into the abyss of reality


« Posted 2003-10-17 13:11:27 »

Pixel format conversion doesn't appear to be working correctly when drawing Transformed OPAQUE managed images onto a vram image with a different pixel format.

I guess the software transforming is done in 32bpp, and is never converted back to the pixel format of the original image before being copied into the vram image.

I assume this is a known issue, and will be resolved in 1.5?

The code below demonstrates the problem.

The image drawn in the top left corner is the untransformed managed image - it draws correctly.
A transformed (rotated) version of the managed image should be flickering around random locations on the screen - it isn't.

Changing the color depth to 32bpp, or changing the image pixel format to BITMASK/TRANSLUCENT solves the problem. (changing the color of the rectangle also fixes the problem.... kinda, but only cos the lower order bits are used by both 16bpp and 32bpp pixel formats Wink)

:-

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
28  
29  
30  
31  
32  
33  
34  
35  
36  
37  
38  
39  
40  
41  
42  
43  
44  
45  
46  
47  
48  
49  
50  
51  
52  
53  
54  
55  
56  
57  
58  
59  
60  
61  
62  
63  
64  
65  
66  
67  
68  
69  
70  
71  
72  
73  
import java.awt.*; 
import java.awt.image.*;
import java.awt.event.*;

public class Test extends Frame
{
  
   static final int SCREEN_WIDTH = 640,SCREEN_HEIGHT = 480;
   static final boolean FULLSCREEN = true;
   boolean running = true;
   public Test()
   {
      setUndecorated(true);
  
      GraphicsConfiguration gc = getGraphicsConfiguration();
      GraphicsDevice gd = gc.getDevice();
      if(FULLSCREEN)
      {
         gd.setFullScreenWindow(this);
         gd.setDisplayMode(new DisplayMode(SCREEN_WIDTH,SCREEN_HEIGHT,16,60));
         // ^^ change this to 32bpp and the problem goes away
     }
      else
      {
         setSize(SCREEN_WIDTH,SCREEN_HEIGHT);
         show();
      }
      
      try{Thread.sleep(2000);}catch(Exception e){} //to ensure the window is fully realised before proceeding.
     
      BufferedImage image = gc.createCompatibleImage(50,50,Transparency.OPAQUE);
      // ^^ change this to BITMASK or TRANSLUCENT, and the problem goes away
     
      {
         Graphics g2d = image.createGraphics();
         g2d.setColor(Color.red);
         // change this to blue, green, white, red etc etc to see which colors work.
        g2d.fillRect(0,0,50,50);
         g2d.dispose();
      }
      
      createBufferStrategy(2);
      
      enableEvents(AWTEvent.KEY_EVENT_MASK);
      while(running)
      {
         Graphics2D g2d = (Graphics2D)(getBufferStrategy().getDrawGraphics());

         g2d.setColor(Color.black);
         g2d.fillRect(0,0,SCREEN_WIDTH,SCREEN_HEIGHT);
         g2d.drawImage(image,0,0,null);
        
         g2d.translate(Math.random()*(SCREEN_WIDTH-50),Math.random()*(SCREEN_HEIGHT-50));
         g2d.rotate(Math.random()*Math.PI*2);
         g2d.drawImage(image,-25,-25,null);
         g2d.dispose();

         g2d.dispose();
         getBufferStrategy().show();
      }
      dispose();
   }

   public void processEvent(AWTEvent e)
   {
      if(((KeyEvent)e).getKeyCode()==KeyEvent.VK_ESCAPE) running = false;
   }
 
   public static void main(String argv[]) throws Exception
   {
      new Test();
   }
}


p.s. drawString and lots of other Graphics[2D] methods also misbehave when using 'odd' bitdepths.

Make Elite IV:Dangerous happen! Pledge your backing at KICKSTARTER here!
Offline trembovetski

Senior Member




If only I knew what I'm talking about!


« Reply #1 - Posted 2003-11-10 06:17:57 »

Thanks for the report. Unfortunately, it's still reproducible in my local build of 1.5, altough we've fixed a very similar bug. I'll double-check tomorrow with the latest build, may be my local build doesn't have this fix..
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!
 
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars and Titan!

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 (37 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (153 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.199 seconds with 20 queries.