View Single Post
  #14 (permalink)  
Old 30th Nov 2009, 2:11 pm
flasher86 flasher86 is offline
Member
I love my MPx player
 
Join Date: Jun 2009
Posts: 174
Default

I started doing this tool quite long time ago, but I didn't tell anything until there was a chance that it will work properly. And also because I wanted to avoid others expectations. I work on it when I have some free time. Luckily or not, I've been ill for a whole week so I had a lot of time. I'm back in college by Wednesday, and I don't know how busy I will be. Therefore please be patient if someone is interested.

But one thing is sure: I wont abandon this project as I tend to do sometimes. So cross fingers for me, because sometimes I encounter very tiresome problems to solve.

Also, I have a question for other developers. On what it depends whether 32bpp bitmap can be displayed (with alpha transparency values).
I found some enum type of data and I am not sure whether one of these values will enable to display fully 32bpp Picture.
PHP Code:
typedef enum
{
    
DSPM_Transp1X8       0,
    
DSPM_Transp2X8          ,
    
DSPM_Transp3X8          ,
    
DSPM_Transp4X8          ,
    
DSPM_Transp5X8          ,
    
DSPM_Transp6X8          ,
    
DSPM_Transp7X8          ,
    
DSPM_Normal                  ,   //˛ opaque
    
DSPM_Transp,     // to the specified color completely transparent
    
DSPM_Gray,     //grayscale display of color
    
DSPM_TranspMid,   //semi-permeable, and the designated color Transmissive
    
DSPM_Transp_max
}   DispMode
I just wonder if it depends on one of these?

Last edited by flasher86; 30th Nov 2009 at 2:24 pm.
Reply With Quote