* Fix compilation of Qt under 64bit

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2534 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
blikblum 2012-09-23 16:52:34 +00:00
parent 7733bd096d
commit 2af3b6009e

View File

@ -1,6 +1,8 @@
uses
qt4, qtobjects;
{$ifdef CPU32}
procedure AlphaBlendLineConstant(Source, Destination: Pointer; Count: Integer; ConstantAlpha, Bias: Integer);
// Blends a line of Count pixels from Source to Destination using a constant alpha value.
@ -290,6 +292,38 @@ procedure EMMS;
asm
DB $0F, $77 /// EMMS
end;
{$else}
procedure AlphaBlendLineConstant(Source, Destination: Pointer; Count: Integer; ConstantAlpha, Bias: Integer);
begin
//
end;
//----------------------------------------------------------------------------------------------------------------------
procedure AlphaBlendLinePerPixel(Source, Destination: Pointer; Count, Bias: Integer);
begin
//
end;
//----------------------------------------------------------------------------------------------------------------------
procedure AlphaBlendLineMaster(Source, Destination: Pointer; Count: Integer; ConstantAlpha, Bias: Integer);
begin
//
end;
procedure AlphaBlendLineMasterAndColor(Destination: Pointer; Count: Integer; ConstantAlpha, Color: Integer);
begin
//
end;
procedure EMMS;
begin
//
end;
{$endif}
//----------------------------------------------------------------------------------------------------------------------