1. 函数原型解析

函数声明:

DFBResult Blit ( 

   IDirectFBSurface    *  thiz,  

   IDirectFBSurface    *  source,  

   const DFBRectangle    *  source_rect,  

   int     x,  

   int     y  

);
       blit即将两张位图(即thiz和source)按拉操作的方法组合成一张图片。于是在DirectFB中,其定义的动作也是合理的:将一个平面中的图片blit到另一个平面上去,两个平面上的内容会产生叠加(而非进行位运算)。  

参数介绍:
    thiz:自身指针变量,类似this指针的变量;属于DirectFB的招牌写法。
    source:上层的surface。

source_rect:需要叠加的区域;如果参数为NULL,表示使用整个surface。

    (x, y):表示DFBRctangle的左上角的坐标位置;


2. 实例


       primary_surface->Blit(primary_surface, image_surface,
NULL, x, y);

参阅 http://blog.csdn.net/younger_china/article/details/17919107

04-30 04:44