You've already forked lazarus-ccr
* 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:
@ -1,6 +1,8 @@
|
|||||||
uses
|
uses
|
||||||
qt4, qtobjects;
|
qt4, qtobjects;
|
||||||
|
|
||||||
|
{$ifdef CPU32}
|
||||||
|
|
||||||
procedure AlphaBlendLineConstant(Source, Destination: Pointer; Count: Integer; ConstantAlpha, Bias: Integer);
|
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.
|
// Blends a line of Count pixels from Source to Destination using a constant alpha value.
|
||||||
@ -290,6 +292,38 @@ procedure EMMS;
|
|||||||
asm
|
asm
|
||||||
DB $0F, $77 /// EMMS
|
DB $0F, $77 /// EMMS
|
||||||
end;
|
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}
|
||||||
|
|
||||||
//----------------------------------------------------------------------------------------------------------------------
|
//----------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user