Subversion Repositories freemyipod

Rev

Rev 504 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 504 Rev 527
Line 26... Line 26...
26
 
26
 
27
#include "emcorelib.h"
27
#include "emcorelib.h"
28
#include "libui.h"
28
#include "libui.h"
29
 
29
 
30
 
30
 
31
void blend(int width, int height, int opacity,
31
void fill(int width, int height, uint32_t color,
32
           void* outbuf, int outx, int outy, int outstride,
32
          void* buf, int x, int y, int stride);
-
 
33
void blit(int width, int height, int pixelbytes,
33
           void* in1buf, int in1x, int in1y, int in1stride,
34
          void* outbuf, int outx, int outy, int outstride,
34
           void* in2buf, int in2x, int in2y, int in2stride);
35
          void* inbuf, int inx, int iny, int instride);
35
void blendcolor(int width, int height, uint32_t color,
36
void blendcolor(int width, int height, uint32_t color,
36
                void* outbuf, int outx, int outy, int outstride,
37
                void* outbuf, int outx, int outy, int outstride,
37
                void* inbuf, int inx, int iny, int instride);
38
                void* inbuf, int inx, int iny, int instride);
38
void mattecolor(int width, int height, uint32_t color,
39
void mattecolor(int width, int height, uint32_t color,
39
                void* outbuf, int outx, int outy, int outstride,
40
                void* outbuf, int outx, int outy, int outstride,
40
                void* inbuf, int inx, int iny, int instride);
41
                void* inbuf, int inx, int iny, int instride);
41
void blit(int width, int height, int pixelbytes,
42
void blend(int width, int height, int opacity,
42
          void* outbuf, int outx, int outy, int outstride,
43
           void* outbuf, int outx, int outy, int outstride,
-
 
44
           void* in1buf, int in1x, int in1y, int in1stride,
43
          void* inbuf, int inx, int iny, int instride);
45
           void* in2buf, int in2x, int in2y, int in2stride);
44
void fill(int width, int height, uint32_t color,
46
void blenda(int width, int height, int opacity,
-
 
47
            void* outbuf, int outx, int outy, int outstride,
-
 
48
            void* in1buf, int in1x, int in1y, int in1stride,
45
          void* buf, int x, int y, int stride);
49
            void* in2buf, int in2x, int in2y, int in2stride);
46
 
50
 
47
 
51
 
48
#endif
52
#endif