AlphaRenderer.dpr
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. //------------------------------------------------------------------------------
  2. //
  3. // Desc: AlphaRenderer - a rendering filter that will perform an
  4. //       alpha blend onto a checkerboard background, which is based
  5. //       on the incoming video alpha. This uses the new media subtype
  6. //       MEDIASUBTYPE_ARGB32.
  7. //
  8. // Converted to Delphi by Nevhasymyy Andriy (a.n@email.com)
  9. // Thanks to Henri Gourvest (hgourvest@progdigy.com)
  10. //
  11. // Portions created by Microsoft are
  12. // Copyright (c) Microsoft Corporation.  All rights reserved.
  13. //------------------------------------------------------------------------------
  14. library AlphaRenderer;
  15. {%ToDo 'AlphaRenderer.todo'}
  16. uses
  17.   BaseClass,
  18.   UAlphaRenderer in 'UAlphaRenderer.pas';
  19. {$E ax}
  20. exports
  21.   DllGetClassObject,
  22.   DllCanUnloadNow,
  23.   DllRegisterServer,
  24.   DllUnregisterServer;
  25. begin
  26. end.