1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
// qsgmaterial.sip generated by MetaSIP
//
// This file is part of the QtQuick Python extension module.
//
// Copyright (c) 2018 Riverbank Computing Limited <info@riverbankcomputing.com>
//
// This file is part of PyQt5.
//
// This file may be used under the terms of the GNU General Public License
// version 3.0 as published by the Free Software Foundation and appearing in
// the file LICENSE included in the packaging of this file. Please review the
// following information to ensure the GNU General Public License version 3.0
// requirements will be met: http://www.gnu.org/copyleft/gpl.html.
//
// If you do not wish to use this file under the terms of the GPL version 3.0
// then you may purchase a commercial license. For more information contact
// info@riverbankcomputing.com.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
class QSGMaterialShader /Supertype=sip.wrapper/
{
%TypeHeaderCode
#include <qsgmaterial.h>
%End
public:
class RenderState
{
%TypeHeaderCode
#include <qsgmaterial.h>
%End
public:
enum DirtyState
{
DirtyMatrix,
DirtyOpacity,
%If (Qt_5_8_0 -)
DirtyCachedMaterialData,
%End
%If (Qt_5_8_0 -)
DirtyAll,
%End
};
typedef QFlags<QSGMaterialShader::RenderState::DirtyState> DirtyStates;
QSGMaterialShader::RenderState::DirtyStates dirtyStates() const;
bool isMatrixDirty() const;
bool isOpacityDirty() const;
float opacity() const;
QMatrix4x4 combinedMatrix() const;
QMatrix4x4 modelViewMatrix() const;
QRect viewportRect() const;
QRect deviceRect() const;
float determinant() const;
QOpenGLContext *context() const;
%If (Qt_5_1_0 -)
QMatrix4x4 projectionMatrix() const;
%End
%If (Qt_5_1_0 -)
float devicePixelRatio() const;
%End
%If (Qt_5_8_0 -)
bool isCachedMaterialDataDirty() const;
%End
};
QSGMaterialShader();
virtual ~QSGMaterialShader();
virtual void activate();
virtual void deactivate();
virtual void updateState(const QSGMaterialShader::RenderState &state, QSGMaterial *newMaterial, QSGMaterial *oldMaterial);
virtual SIP_PYOBJECT attributeNames() const = 0 /TypeHint="List[str]"/ [const char * const * ()];
%MethodCode
const char * const *names = sipCpp->attributeNames();
Py_ssize_t nr_names = 0;
if (names)
while (names[nr_names])
++nr_names;
sipRes = PyList_New(nr_names);
if (!sipRes)
sipIsErr = 1;
else
for (Py_ssize_t i = 0; i < nr_names; ++i)
{
const char *name = names[i];
PyObject *el;
#if PY_MAJOR_VERSION >= 3
el = PyUnicode_DecodeASCII(name, strlen(name), 0);
#else
el = PyString_FromString(name);
#endif
if (!el)
{
Py_DECREF(sipRes);
sipIsErr = 1;
break;
}
PyList_SetItem(sipRes, i, el);
}
%End
%VirtualCatcherCode
PyObject *names = sipCallMethod(&sipIsErr, sipMethod, "");
if (names)
{
sipRes = qtquick_anc_get_attr_names(sipPySelf, sipMethod, names);
if (!sipRes)
sipIsErr = 1;
Py_DECREF(names);
}
%End
QOpenGLShaderProgram *program();
protected:
virtual void compile();
virtual void initialize();
%If (Qt_5_2_0 -)
virtual const char *vertexShader() const;
%End
%If (- Qt_5_2_0)
virtual const char *vertexShader() const = 0;
%End
%If (Qt_5_2_0 -)
virtual const char *fragmentShader() const;
%End
%If (- Qt_5_2_0)
virtual const char *fragmentShader() const = 0;
%End
%If (Qt_5_2_0 -)
void setShaderSourceFile(QOpenGLShader::ShaderType type, const QString &sourceFile);
%End
%If (Qt_5_2_0 -)
void setShaderSourceFiles(QOpenGLShader::ShaderType type, const QStringList &sourceFiles);
%End
private:
QSGMaterialShader(const QSGMaterialShader &);
};
struct QSGMaterialType
{
%TypeHeaderCode
#include <qsgmaterial.h>
%End
};
class QSGMaterial /Supertype=sip.wrapper/
{
%TypeHeaderCode
#include <qsgmaterial.h>
%End
public:
enum Flag
{
Blending,
RequiresDeterminant,
RequiresFullMatrixExceptTranslate,
RequiresFullMatrix,
%If (Qt_5_2_0 -)
CustomCompileStep,
%End
};
typedef QFlags<QSGMaterial::Flag> Flags;
QSGMaterial();
virtual ~QSGMaterial();
virtual QSGMaterialType *type() const = 0;
virtual QSGMaterialShader *createShader() const = 0 /Factory/;
virtual int compare(const QSGMaterial *other) const;
QSGMaterial::Flags flags() const;
void setFlag(QSGMaterial::Flags flags, bool enabled = true);
private:
QSGMaterial(const QSGMaterial &);
};
QFlags<QSGMaterial::Flag> operator|(QSGMaterial::Flag f1, QFlags<QSGMaterial::Flag> f2);
QFlags<QSGMaterialShader::RenderState::DirtyState> operator|(QSGMaterialShader::RenderState::DirtyState f1, QFlags<QSGMaterialShader::RenderState::DirtyState> f2);
%ModuleCode
// Release any attribute names to the heap.
static void qtquick_anc_release(char **attr_names)
{
if (attr_names)
{
for (int i = 0; attr_names[i]; ++i)
delete[] attr_names[i];
delete[] attr_names;
}
}
// The destructor for the attribute names PyCapsule.
static void qtquick_anc_destructor(PyObject *cap)
{
qtquick_anc_release(
reinterpret_cast<char **>(PyCapsule_GetPointer(cap, NULL)));
}
// Get the attribute names or 0 if there was an error.
static char **qtquick_anc_get_attr_names(sipSimpleWrapper *pySelf, PyObject *method, PyObject *attr_names_obj)
{
// Dispose of any existing names.
Py_XDECREF(sipGetUserObject(pySelf));
sipSetUserObject(pySelf, NULL);
// Convert the new names.
if (!PyList_Check(attr_names_obj))
{
sipBadCatcherResult(method);
return 0;
}
char **names = new char *[PyList_Size(attr_names_obj) + 1];
for (Py_ssize_t i = 0; i < PyList_Size(attr_names_obj); ++i)
{
char *name;
PyObject *el = PyList_GetItem(attr_names_obj, i);
#if PY_MAJOR_VERSION >= 3
PyObject *name_obj = PyUnicode_AsASCIIString(el);
name = (name_obj ? PyBytes_AsString(name_obj) : 0);
#else
name = PyString_AsString(el);
#endif
if (!name)
{
names[i] = 0;
qtquick_anc_release(names);
sipBadCatcherResult(method);
return 0;
}
char *name_copy = new char[strlen(name) + 1];
strcpy(name_copy, name);
names[i] = name_copy;
#if PY_MAJOR_VERSION >= 3
Py_DECREF(name_obj);
#endif
}
names[PyList_Size(attr_names_obj)] = 0;
sipSetUserObject(pySelf, PyCapsule_New(names, NULL, qtquick_anc_destructor));
if (!sipGetUserObject(pySelf))
{
qtquick_anc_release(names);
return 0;
}
return names;
}
%End
|