diff options
Diffstat (limited to 'libs/rs/rsAllocation.cpp')
-rw-r--r-- | libs/rs/rsAllocation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/rs/rsAllocation.cpp b/libs/rs/rsAllocation.cpp index b5f6f56..5b84ca6 100644 --- a/libs/rs/rsAllocation.cpp +++ b/libs/rs/rsAllocation.cpp @@ -209,7 +209,7 @@ void Allocation::uploadToTexture(const Context *rsc) { freeScriptMemory(); } - rsc->checkError("Allocation::uploadToTexture"); + //rsc->checkError("Allocation::uploadToTexture"); #endif //ANDROID_RS_SERIALIZE } @@ -334,7 +334,7 @@ void Allocation::uploadToBufferObject(const Context *rsc) { glBindBuffer(target, mBufferID); glBufferData(target, mHal.state.type->getSizeBytes(), getPtr(), GL_DYNAMIC_DRAW); glBindBuffer(target, 0); - rsc->checkError("Allocation::uploadToBufferObject"); + //rsc->checkError("Allocation::uploadToBufferObject"); #endif //ANDROID_RS_SERIALIZE } |