Qt 4.8
qdrawhelper_sse3dnow.cpp
Go to the documentation of this file.
1 /****************************************************************************
2 **
3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the QtGui module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia. For licensing terms and
14 ** conditions see http://qt.digia.com/licensing. For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file. Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights. These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file. Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 
42 #include <private/qdrawhelper_x86_p.h>
43 
44 #if defined(QT_HAVE_3DNOW) && defined(QT_HAVE_SSE)
45 
46 #include <private/qdrawhelper_sse_p.h>
47 #include <mm3dnow.h>
48 
50 
51 struct QSSE3DNOWIntrinsics : public QSSEIntrinsics
52 {
53  static inline void end() {
54  _m_femms();
55  }
56 };
57 
58 CompositionFunctionSolid qt_functionForModeSolid_SSE3DNOW[numCompositionFunctions] = {
59  comp_func_solid_SourceOver<QSSE3DNOWIntrinsics>,
60  comp_func_solid_DestinationOver<QSSE3DNOWIntrinsics>,
61  comp_func_solid_Clear<QSSE3DNOWIntrinsics>,
62  comp_func_solid_Source<QSSE3DNOWIntrinsics>,
63  0,
64  comp_func_solid_SourceIn<QSSE3DNOWIntrinsics>,
65  comp_func_solid_DestinationIn<QSSE3DNOWIntrinsics>,
66  comp_func_solid_SourceOut<QSSE3DNOWIntrinsics>,
67  comp_func_solid_DestinationOut<QSSE3DNOWIntrinsics>,
68  comp_func_solid_SourceAtop<QSSE3DNOWIntrinsics>,
69  comp_func_solid_DestinationAtop<QSSE3DNOWIntrinsics>,
70  comp_func_solid_XOR<QSSE3DNOWIntrinsics>,
71  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // svg 1.2 modes
72  rasterop_solid_SourceOrDestination<QSSE3DNOWIntrinsics>,
73  rasterop_solid_SourceAndDestination<QSSE3DNOWIntrinsics>,
74  rasterop_solid_SourceXorDestination<QSSE3DNOWIntrinsics>,
75  rasterop_solid_NotSourceAndNotDestination<QSSE3DNOWIntrinsics>,
76  rasterop_solid_NotSourceOrNotDestination<QSSE3DNOWIntrinsics>,
77  rasterop_solid_NotSourceXorDestination<QSSE3DNOWIntrinsics>,
78  rasterop_solid_NotSource<QSSE3DNOWIntrinsics>,
79  rasterop_solid_NotSourceAndDestination<QSSE3DNOWIntrinsics>,
80  rasterop_solid_SourceAndNotDestination<QSSE3DNOWIntrinsics>
81 };
82 
83 CompositionFunction qt_functionForMode_SSE3DNOW[numCompositionFunctions] = {
84  comp_func_SourceOver<QSSE3DNOWIntrinsics>,
85  comp_func_DestinationOver<QSSE3DNOWIntrinsics>,
86  comp_func_Clear<QSSE3DNOWIntrinsics>,
87  comp_func_Source<QSSE3DNOWIntrinsics>,
89  comp_func_SourceIn<QSSE3DNOWIntrinsics>,
90  comp_func_DestinationIn<QSSE3DNOWIntrinsics>,
91  comp_func_SourceOut<QSSE3DNOWIntrinsics>,
92  comp_func_DestinationOut<QSSE3DNOWIntrinsics>,
93  comp_func_SourceAtop<QSSE3DNOWIntrinsics>,
94  comp_func_DestinationAtop<QSSE3DNOWIntrinsics>,
95  comp_func_XOR<QSSE3DNOWIntrinsics>,
117 };
118 
119 void qt_blend_color_argb_sse3dnow(int count, const QSpan *spans, void *userData)
120 {
121  qt_blend_color_argb_x86<QSSE3DNOWIntrinsics>(count, spans, userData,
122  (CompositionFunctionSolid*)qt_functionForModeSolid_SSE3DNOW);
123 }
124 
125 void qt_memfill32_sse3dnow(quint32 *dest, quint32 value, int count)
126 {
127  return qt_memfill32_sse_template<QSSE3DNOWIntrinsics>(dest, value, count);
128 }
129 
130 
131 void qt_bitmapblit16_sse3dnow(QRasterBuffer *rasterBuffer, int x, int y,
132  quint32 color,
133  const uchar *src,
134  int width, int height, int stride)
135 {
136  return qt_bitmapblit16_sse_template<QSSE3DNOWIntrinsics>(rasterBuffer, x,y,
137  color, src, width,
138  height, stride);
139 }
140 
142 
143 #endif // QT_HAVE_3DNOW && QT_HAVE_SSE
static const int numCompositionFunctions
#define QT_END_NAMESPACE
This macro expands to.
Definition: qglobal.h:90
void QT_FASTCALL comp_func_Difference(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL comp_func_Screen(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL rasterop_SourceXorDestination(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL comp_func_Destination(uint *, const uint *, int, uint)
void QT_FASTCALL rasterop_NotSourceOrNotDestination(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL rasterop_SourceOrDestination(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL comp_func_HardLight(uint *dest, const uint *src, int length, uint const_alpha)
unsigned char uchar
Definition: qglobal.h:994
#define QT_BEGIN_NAMESPACE
This macro expands to.
Definition: qglobal.h:89
void QT_FASTCALL rasterop_NotSourceXorDestination(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL rasterop_NotSourceAndNotDestination(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL comp_func_Multiply(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL comp_func_ColorDodge(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL comp_func_Overlay(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL comp_func_ColorBurn(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL comp_func_Plus(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL comp_func_Exclusion(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL comp_func_Darken(uint *dest, const uint *src, int length, uint const_alpha)
void(QT_FASTCALL * CompositionFunction)(uint *dest, const uint *src, int length, uint const_alpha)
unsigned int quint32
Definition: qglobal.h:938
void QT_FASTCALL rasterop_NotSource(uint *dest, const uint *src, int length, uint const_alpha)
void(QT_FASTCALL * CompositionFunctionSolid)(uint *dest, int length, uint color, uint const_alpha)
void QT_FASTCALL rasterop_SourceAndNotDestination(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL rasterop_NotSourceAndDestination(uint *dest, const uint *src, int length, uint const_alpha)
static const KeyPair *const end
void QT_FASTCALL comp_func_Lighten(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL rasterop_SourceAndDestination(uint *dest, const uint *src, int length, uint const_alpha)
void QT_FASTCALL comp_func_SoftLight(uint *dest, const uint *src, int length, uint const_alpha)