Chinaunix首页 | 论坛 | 博客
  • 博客访问: 377207
  • 博文数量: 117
  • 博客积分: 2530
  • 博客等级: 少校
  • 技术积分: 1262
  • 用 户 组: 普通用户
  • 注册时间: 2006-04-11 08:56
文章分类

全部博文(117)

文章存档

2015年(8)

2011年(2)

2010年(2)

2009年(16)

2008年(27)

2007年(42)

2006年(20)

我的朋友

分类:

2007-08-31 10:48:47

A Surface is a reserved area in memory where pixel data for one image is stored in a
specific pixel format. A Surface can reside in video and/or system memory. It is possible to perform drawing operations on a surface or to Blit the surface to another.
   In fullscreen mode, the visible screen is represented by the ”‘Primary Surface”’, so it is possible to perform graphics operations directly on the visible screen.Every Surface can optionally use double buffering, graphics operations are then first executed on a secondary buffer and become valid after Flip() is called. To prevent flickering it is advised to use Doublebuffering on the primary Surface in most cases.

Depending on the graphics hardware, there are one or more display Layers. A standard PC graphics card has only one Layer, but sophisticated devices like TV set top boxes may support two or more layers. Layers occupy different areas in video ram, and are usually combined by using alpha blending. This in done automatically by the display hardware. If the content of the lowest Layer changes, no repaint has to be done and the contents of the above layers remain untouched. Today, most PC graphics cards also support an additional layer (a ”‘video layer”’), which can be scaled and does color conversion from YUV to RGB. This layer cannot usually be blended and has to remain fully opaque. Video layers are supported by varios DirectFB graphics drivers.

Normally the contents of a layer’s surface is controlled by the integrated windowing system that shows the windows belonging to the layer on a configurable background. Each window has its own surface that is used by the windowing system to produce the composed image of overlapping windows. Alternatively applications, especially games, can get exclusive access to the layer. This way the application has direct control over the layer’s surface and it’s contents, no windows are shown.

  • 1 IDirectFB (top-level) <--> N Screens
  • 1 Screen <--> N Layers
  • 1 Layer <--> 1 Primary Surface
  • 1 Layer <--> N Windows
  • 1 Window <--> 1 Window Surface
  • 1 Surface <--> N Subsurfaces
so,make the conclusions:
    layer    object:screen,layer,window
    drawing  object:surface
    Every layers has its own surface.

Then the concepts above told us how to use DFB:drawing on the surface ,management on the layer object.

阅读(1718) | 评论(0) | 转发(0) |
0

上一篇:日记

下一篇:风中飞舞的风筝

给主人留下些什么吧!~~