summaryrefslogtreecommitdiffstats
path: root/src/render/geometry/attribute_p.h
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2016-02-24 19:14:22 +0100
committerPaul Lemire <paul.lemire@kdab.com>2016-02-26 09:45:07 +0000
commit473fb46f44d4225675c5d903501a7cb9ee6b8258 (patch)
treee56859c1b612e332dbf02387091ad152f868d379 /src/render/geometry/attribute_p.h
parent3226fe1a97872dff3bf83a9aefcba21a7d6c6801 (diff)
QAttribute: merge with QAbstractAttribute
remove asVector and dump functions Change-Id: I0c4e4e240ed4b69f72b3de6379c6866743d48b17 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/render/geometry/attribute_p.h')
-rw-r--r--src/render/geometry/attribute_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/render/geometry/attribute_p.h b/src/render/geometry/attribute_p.h
index 610cc74e1..dcf321be8 100644
--- a/src/render/geometry/attribute_p.h
+++ b/src/render/geometry/attribute_p.h
@@ -73,26 +73,26 @@ public:
inline Qt3DCore::QNodeId bufferId() const { return m_bufferId; }
inline QString name() const { return m_name; }
- inline QAbstractAttribute::DataType dataType() const { return m_dataType; }
+ inline QAttribute::DataType dataType() const { return m_dataType; }
inline uint dataSize() const { return m_dataSize; }
inline uint count() const { return m_count; }
inline uint byteStride() const { return m_byteStride; }
inline uint byteOffset() const { return m_byteOffset; }
inline uint divisor() const { return m_divisor; }
- inline QAbstractAttribute::AttributeType attributeType() const { return m_attributeType; }
+ inline QAttribute::AttributeType attributeType() const { return m_attributeType; }
inline bool isDirty() const { return m_attributeDirty; }
void unsetDirty();
private:
Qt3DCore::QNodeId m_bufferId;
QString m_name;
- QAbstractAttribute::DataType m_dataType;
+ QAttribute::DataType m_dataType;
uint m_dataSize;
uint m_count;
uint m_byteStride;
uint m_byteOffset;
uint m_divisor;
- QAbstractAttribute::AttributeType m_attributeType;
+ QAttribute::AttributeType m_attributeType;
bool m_attributeDirty;
};