From 2af3b6009e1edb36f9a172e196cc2539d8ba3e45 Mon Sep 17 00:00:00 2001 From: blikblum Date: Sun, 23 Sep 2012 16:52:34 +0000 Subject: [PATCH] * Fix compilation of Qt under 64bit git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2534 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- .../4.8/include/intf/qt/vtgraphicsi.inc | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/components/virtualtreeview-new/branches/4.8/include/intf/qt/vtgraphicsi.inc b/components/virtualtreeview-new/branches/4.8/include/intf/qt/vtgraphicsi.inc index 2e2f013bb..9ffeb2e43 100644 --- a/components/virtualtreeview-new/branches/4.8/include/intf/qt/vtgraphicsi.inc +++ b/components/virtualtreeview-new/branches/4.8/include/intf/qt/vtgraphicsi.inc @@ -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} //----------------------------------------------------------------------------------------------------------------------