summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/drawimage.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/drawimage.h')
-rw-r--r--Build/source/utils/asymptote/drawimage.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Build/source/utils/asymptote/drawimage.h b/Build/source/utils/asymptote/drawimage.h
index 09cf1aaf6ba..e73e00e01a1 100644
--- a/Build/source/utils/asymptote/drawimage.h
+++ b/Build/source/utils/asymptote/drawimage.h
@@ -79,14 +79,13 @@ public:
};
class drawFunctionImage : public drawImage {
- vm::array image;
vm::stack *Stack;
vm::callable *f;
Int width, height;
public:
drawFunctionImage(vm::stack *Stack, vm::callable *f, Int width, Int height,
const transform& t, bool antialias)
- : drawImage(t,antialias), image(image), Stack(Stack), f(f),
+ : drawImage(t,antialias), Stack(Stack), f(f),
width(width), height(height) {}
virtual ~drawFunctionImage() {}