summaryrefslogtreecommitdiff
path: root/libs/rs/rsProgramRaster.h
diff options
context:
space:
mode:
author Jason Sams <rjsams@android.com> 2011-09-23 14:18:53 -0700
committer Jason Sams <rjsams@android.com> 2011-09-23 14:18:53 -0700
commit94aaed38467c71a6c804f0e18b41346a4013c25b (patch)
treeb64c609a2afd305f81b3971a8e3811e5053bc2de /libs/rs/rsProgramRaster.h
parente94d950d122005bb10e11dd18b6029d0108f2fbe (diff)
Remove unused fields in ProgramRaster
Change-Id: I70c9d47674c956ec850c178c7aaa9a5e3dd9dffb
Diffstat (limited to 'libs/rs/rsProgramRaster.h')
-rw-r--r--libs/rs/rsProgramRaster.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/libs/rs/rsProgramRaster.h b/libs/rs/rsProgramRaster.h
index 09d7d5432c9a..20af30a1b90b 100644
--- a/libs/rs/rsProgramRaster.h
+++ b/libs/rs/rsProgramRaster.h
@@ -33,19 +33,13 @@ public:
static ProgramRaster *createFromStream(Context *rsc, IStream *stream);
static ObjectBaseRef<ProgramRaster> getProgramRaster(Context *rsc,
- bool pointSmooth,
- bool lineSmooth,
bool pointSprite,
- float lineWidth,
RsCullMode cull);
struct Hal {
mutable void *drv;
struct State {
- bool pointSmooth;
- bool lineSmooth;
bool pointSprite;
- float lineWidth;
RsCullMode cull;
};
State state;
@@ -58,10 +52,7 @@ protected:
private:
ProgramRaster(Context *rsc,
- bool pointSmooth,
- bool lineSmooth,
bool pointSprite,
- float lineWidth,
RsCullMode cull);
};