summaryrefslogtreecommitdiffstats
path: root/libs/rs/rsProgramVertex.cpp
diff options
context:
space:
mode:
authorAlex Sakhartchouk <alexst@google.com>2010-10-01 10:54:06 -0700
committerAlex Sakhartchouk <alexst@google.com>2010-10-01 14:11:52 -0700
commitfeede2aee6fe3e721ee71ffc35b277f1d9260e03 (patch)
treec6df2da8461c6ae5578dac9a999a040cd903e32d /libs/rs/rsProgramVertex.cpp
parente0ad63bf1e038dd84ec2502243236f86104f990d (diff)
downloadframeworks_base-feede2aee6fe3e721ee71ffc35b277f1d9260e03.zip
frameworks_base-feede2aee6fe3e721ee71ffc35b277f1d9260e03.tar.gz
frameworks_base-feede2aee6fe3e721ee71ffc35b277f1d9260e03.tar.bz2
fixing bugs 3053960, 3044804, 3044798
shader cleanup and removing unnecessary state setup. Change-Id: Ibddf2ad3a26bb983fc43bdeb58b1cec6224920b4
Diffstat (limited to 'libs/rs/rsProgramVertex.cpp')
-rw-r--r--libs/rs/rsProgramVertex.cpp12
1 files changed, 3 insertions, 9 deletions
diff --git a/libs/rs/rsProgramVertex.cpp b/libs/rs/rsProgramVertex.cpp
index bd12989..d3dbfb2 100644
--- a/libs/rs/rsProgramVertex.cpp
+++ b/libs/rs/rsProgramVertex.cpp
@@ -45,15 +45,9 @@ ProgramVertex::ProgramVertex(Context *rsc, const char * shaderText,
ProgramVertex::~ProgramVertex()
{
-}
-
-static void logMatrix(const char *txt, const float *f)
-{
- LOGV("Matrix %s, %p", txt, f);
- LOGV("%6.4f, %6.4f, %6.4f, %6.4f", f[0], f[4], f[8], f[12]);
- LOGV("%6.4f, %6.4f, %6.4f, %6.4f", f[1], f[5], f[9], f[13]);
- LOGV("%6.4f, %6.4f, %6.4f, %6.4f", f[2], f[6], f[10], f[14]);
- LOGV("%6.4f, %6.4f, %6.4f, %6.4f", f[3], f[7], f[11], f[15]);
+ if(mShaderID) {
+ mRSC->mShaderCache.cleanupVertex(mShaderID);
+ }
}
void ProgramVertex::loadShader(Context *rsc) {