diff options
| author | 2009-07-08 18:01:53 -0700 | |
|---|---|---|
| committer | 2009-07-10 17:32:59 -0700 | |
| commit | 64676f3c21a07d650069315572811570cbf8f728 (patch) | |
| tree | cb644e9e9ea740f5193ceeb445a426f34d107fc2 /libs/rs/rsMesh.cpp | |
| parent | 48e61cf545c59dd269a4831e52803d132c0ca09a (diff) | |
1st cut of a3d file loader.
Diffstat (limited to 'libs/rs/rsMesh.cpp')
| -rw-r--r-- | libs/rs/rsMesh.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/rs/rsMesh.cpp b/libs/rs/rsMesh.cpp index 6eb95fcfc7d6..aeb52eda4434 100644 --- a/libs/rs/rsMesh.cpp +++ b/libs/rs/rsMesh.cpp @@ -24,9 +24,10 @@ using namespace android::renderscript; Mesh::Mesh() { - mSources = NULL; + mVerticies = NULL; + mVerticiesCount = 0; mPrimitives = NULL; - mPrimitiveCount = 0; + mPrimitivesCount = 0; } Mesh::~Mesh() |