diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2009-07-16 14:54:11 -0700 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2009-07-16 14:54:11 -0700 |
commit | 77de619c059ec87cb100dd1cd339f9ecbd5f43d2 (patch) | |
tree | bca0e25431d453f2468370585cc7ed095677acb6 /opengl | |
parent | b2fb847ff443c1dd5ac09d2ef02bf14cc09580a1 (diff) | |
parent | 4cce5bd5ccc7c8468d0f8cc359525f82a45dedec (diff) | |
download | frameworks_native-77de619c059ec87cb100dd1cd339f9ecbd5f43d2.zip frameworks_native-77de619c059ec87cb100dd1cd339f9ecbd5f43d2.tar.gz frameworks_native-77de619c059ec87cb100dd1cd339f9ecbd5f43d2.tar.bz2 |
Merge commit 'goog/readonly-korg-master' into merge_korg_master
* commit 'goog/readonly-korg-master':
Fixed Android issue #400, where the Intent documentation was inaccurate in a number of places, undoubtedly causing untold grief to innumerable masses.
Bug Fixed for libagl.
Diffstat (limited to 'opengl')
-rw-r--r-- | opengl/libagl/primitives.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/libagl/primitives.cpp b/opengl/libagl/primitives.cpp index f164c02..769ec40 100644 --- a/opengl/libagl/primitives.cpp +++ b/opengl/libagl/primitives.cpp @@ -369,7 +369,7 @@ void compute_iterators_t::iterators0032(int32_t* it, int32_t c0, int32_t c1, int32_t c2) const { int64_t it64[3]; - iterators0032(it, c0, c1, c2); + iterators0032(it64, c0, c1, c2); it[0] = it64[0]; it[1] = it64[1]; it[2] = it64[2]; |