aboutsummaryrefslogtreecommitdiffstats
path: root/src/declarative/items/qsgpainteditem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/items/qsgpainteditem.h')
-rw-r--r--src/declarative/items/qsgpainteditem.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/declarative/items/qsgpainteditem.h b/src/declarative/items/qsgpainteditem.h
index 23becfefa4..8d4b466922 100644
--- a/src/declarative/items/qsgpainteditem.h
+++ b/src/declarative/items/qsgpainteditem.h
@@ -57,8 +57,6 @@ class Q_DECLARATIVE_EXPORT QSGPaintedItem : public QSGItem
Q_PROPERTY(QSize contentsSize READ contentsSize WRITE setContentsSize NOTIFY contentsSizeChanged)
Q_PROPERTY(QColor fillColor READ fillColor WRITE setFillColor NOTIFY fillColorChanged)
- Q_PROPERTY(int pixelCacheSize READ pixelCacheSize WRITE setPixelCacheSize)
- Q_PROPERTY(bool smoothCache READ smoothCache WRITE setSmoothCache)
Q_PROPERTY(qreal contentsScale READ contentsScale WRITE setContentsScale NOTIFY contentsScaleChanged)
Q_PROPERTY(RenderTarget renderTarget READ renderTarget WRITE setRenderTarget NOTIFY renderTargetChanged)
public:
@@ -75,6 +73,9 @@ public:
bool opaquePainting() const;
void setOpaquePainting(bool opaque);
+ bool antialiasing() const;
+ void setAntialiasing(bool enable);
+
QSize contentsSize() const;
void setContentsSize(const QSize &);
void resetContentsSize();
@@ -82,12 +83,6 @@ public:
qreal contentsScale() const;
void setContentsScale(qreal);
- int pixelCacheSize() const;
- void setPixelCacheSize(int pixels);
-
- bool smoothCache() const;
- void setSmoothCache(bool on);
-
QColor fillColor() const;
void setFillColor(const QColor&);