OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:orientationcount
(Results
1 - 1
of
1
) sorted by null
/packages/apps/Gallery3D/src/com/cooliris/media/
GridQuad.java
107
final int
orientationCount
= (!generateOrientedQuads) ? 1 : ORIENTATION_COUNT;
108
mVertexBuffer = ByteBuffer.allocateDirect(FLOAT_SIZE * size * 3 *
orientationCount
).order(ByteOrder.nativeOrder())
110
mOverlayTexCoordBuffer = ByteBuffer.allocateDirect(FLOAT_SIZE * size * 2 *
orientationCount
).order(ByteOrder.nativeOrder())
112
mBaseTexCoordBuffer = ByteBuffer.allocateDirect(FLOAT_SIZE * size * 2 *
orientationCount
).order(ByteOrder.nativeOrder())
116
mIndexBuffer = ByteBuffer.allocateDirect(CHAR_SIZE * indexCount *
orientationCount
).order(ByteOrder.nativeOrder())
125
for (int i = 0; i < INDEX_COUNT *
orientationCount
; ++i) {
Completed in 246 milliseconds