diff options
| author | 2014-11-07 00:17:09 +0000 | |
|---|---|---|
| committer | 2014-11-07 00:17:09 +0000 | |
| commit | 86f289fb505a8fef9e5aae822631a738540c31df (patch) | |
| tree | 97f418c310a0913a73a04604463047003cf9fac4 /libs/hwui/AmbientShadow.cpp | |
| parent | d1f629f36ba35d86e37732a145aad771f9e6b23c (diff) | |
| parent | 0b70c09c1df3a5c359b8a93a8ac08e945805b693 (diff) | |
am 0b70c09c: am 7ae6fc81: Merge "A better looking and faster spot shadow." into lmp-mr1-dev
* commit '0b70c09c1df3a5c359b8a93a8ac08e945805b693':
A better looking and faster spot shadow.
Diffstat (limited to 'libs/hwui/AmbientShadow.cpp')
| -rw-r--r-- | libs/hwui/AmbientShadow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/hwui/AmbientShadow.cpp b/libs/hwui/AmbientShadow.cpp index cb3a002b07d5..21c869b68572 100644 --- a/libs/hwui/AmbientShadow.cpp +++ b/libs/hwui/AmbientShadow.cpp @@ -326,9 +326,9 @@ void AmbientShadow::createAmbientShadow(bool isCasterOpaque, shadowVertexBuffer.updateVertexCount(vertexBufferIndex); shadowVertexBuffer.updateIndexCount(indexBufferIndex); - ShadowTessellator::checkOverflow(vertexBufferIndex, totalVertexCount, "Vertex Buffer"); - ShadowTessellator::checkOverflow(indexBufferIndex, totalIndexCount, "Index Buffer"); - ShadowTessellator::checkOverflow(umbraIndex, totalUmbraCount, "Umbra Buffer"); + ShadowTessellator::checkOverflow(vertexBufferIndex, totalVertexCount, "Ambient Vertex Buffer"); + ShadowTessellator::checkOverflow(indexBufferIndex, totalIndexCount, "Ambient Index Buffer"); + ShadowTessellator::checkOverflow(umbraIndex, totalUmbraCount, "Ambient Umbra Buffer"); #if DEBUG_SHADOW for (int i = 0; i < vertexBufferIndex; i++) { |