From 4987af409c704c881be83f9a90b98ce7658e1c46 Mon Sep 17 00:00:00 2001 From: Matt Kopec Date: Fri, 3 Feb 2012 12:47:38 -0500 Subject: Enable passing of debug and optimization flags to slang in Ant builds. Change-Id: I8c6affe825b93eefb7ed60000740aa2783d93a20 --- anttasks/src/com/android/ant/RenderScriptTask.java | 25 ++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) (limited to 'anttasks/src') diff --git a/anttasks/src/com/android/ant/RenderScriptTask.java b/anttasks/src/com/android/ant/RenderScriptTask.java index 5a71d36..d893d8e 100644 --- a/anttasks/src/com/android/ant/RenderScriptTask.java +++ b/anttasks/src/com/android/ant/RenderScriptTask.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010 The Android Open Source Project + * Copyright (C) 2010, 2012 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,12 +28,14 @@ import java.util.List; /** * Task to execute renderscript. *

- * It expects 5 attributes:
+ * It expects 7 attributes:
* 'executable' ({@link Path} with a single path) for the location of the llvm executable
* 'framework' ({@link Path} with 1 or more paths) for the include paths.
* 'genFolder' ({@link Path} with a single path) for the location of the gen folder.
* 'resFolder' ({@link Path} with a single path) for the location of the res folder.
* 'targetApi' for the -target-api value.
+ * 'optLevel' for the -O optimization level.
+ * 'debug' for -g renderscript debugging.
*

* It also expects one or more inner elements called "source" which are identical to {@link Path} * elements for where to find .rs files. @@ -46,6 +48,9 @@ public class RenderScriptTask extends MultiFilesTask { private String mResFolder; private final List mPaths = new ArrayList(); private int mTargetApi = 0; + public enum OptLevel { O0, O1, O2, O3 }; + private OptLevel mOptLevel; + private boolean mDebug = false; private class RenderScriptProcessor implements SourceProcessor { @@ -87,6 +92,13 @@ public class RenderScriptTask extends MultiFilesTask { } + if (mDebug) { + task.createArg().setValue("-g"); + } + + task.createArg().setValue("-O"); + task.createArg().setValue(Integer.toString(mOptLevel.ordinal())); + task.createArg().setValue("-target-api"); task.createArg().setValue(mTargetApiStr); @@ -115,6 +127,7 @@ public class RenderScriptTask extends MultiFilesTask { System.out.println(String.format( "Compiling %1$d RenderScript files with -target-api %2$d", count, mTargetApi)); + System.out.println(String.format("Optimization Level: %1$d", mOptLevel.ordinal())); } else { System.out.println("No RenderScript files to compile."); } @@ -173,6 +186,14 @@ public class RenderScriptTask extends MultiFilesTask { } } + public void setOptLevel(OptLevel optLevel) { + mOptLevel = optLevel; + } + + public void setDebug(boolean debug) { + mDebug = debug; + } + public Path createSource() { Path p = new Path(getProject()); mPaths.add(p); -- cgit v1.1