summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/drawfill.h
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-05-28 23:56:03 +0000
committerKarl Berry <karl@freefriends.org>2009-05-28 23:56:03 +0000
commite767448d0591f5dbb0cd485e4b014becdcbd1ba4 (patch)
tree83bec5bd1ee117130f3e9dcee985dcd42f5145d9 /Build/source/utils/asymptote/drawfill.h
parent20751a51df382b884807d8b9ef1ff7f7cc7739a5 (diff)
asymptote 1.74
git-svn-id: svn://tug.org/texlive/trunk@13514 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/drawfill.h')
-rw-r--r--Build/source/utils/asymptote/drawfill.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Build/source/utils/asymptote/drawfill.h b/Build/source/utils/asymptote/drawfill.h
index 71e2c9042c2..14666d1df5f 100644
--- a/Build/source/utils/asymptote/drawfill.h
+++ b/Build/source/utils/asymptote/drawfill.h
@@ -166,8 +166,10 @@ public:
drawFunctionShade(const vm::array& src, bool stroke, pen pentype,
const string& shader)
: drawFill(src,stroke,pentype), shader(shader) {
- if(!settings::pdf(settings::getSetting<string>("tex")))
- reportError("functionshade requires -tex pdftex or -tex pdflatex");
+ string texengine=settings::getSetting<string>("tex");
+ if(!settings::pdf(texengine))
+ reportError("functionshade is not implemented for the '"+texengine+
+ "' tex engine");
}
virtual ~drawFunctionShade() {}