Searched refs:indexCount (Results 1 - 25 of 142) sorted by relevance

123456

/external/chromium_org/third_party/skia/src/core/
H A DSkVertState.h27 VertState(int vCount, const uint16_t indices[], int indexCount) argument
31 fCount = indexCount;
/external/skia/src/core/
H A DSkVertState.h27 VertState(int vCount, const uint16_t indices[], int indexCount) argument
31 fCount = indexCount;
H A DSkRecorder.cpp197 const uint16_t indices[], int indexCount, const SkPaint& paint) {
205 this->copy(indices, indexCount),
206 indexCount);
193 drawVertices(VertexMode vmode, int vertexCount, const SkPoint vertices[], const SkPoint texs[], const SkColor colors[], SkXfermode* xmode, const uint16_t indices[], int indexCount, const SkPaint& paint) argument
/external/chromium_org/third_party/skia/src/gpu/
H A DGrDrawTarget.h151 * indexCount.
158 * source is reset and likewise for indexCount.
167 * @param indexCount the number of indices to reserve space for. Can be 0.
170 * @param indices will point to reserved index space if indexCount is
171 * non-zero. Illegal to pass NULL if indexCount > 0.
174 int indexCount,
192 * @param indexCount in: hint about how many indices the caller would
201 int* indexCount) const;
218 * @param indexCount the number of indices in the array.
220 void setIndexSourceToArray(const void* indexArray, int indexCount);
802 int indexCount() const { return fIndexCount; } function in class:GrDrawTarget::DrawInfo
861 willReserveVertexAndIndexSpace(int vertexCount, int indexCount) argument
[all...]
H A DGrDrawTarget.cpp173 bool GrDrawTarget::reserveIndexSpace(int indexCount, argument
177 if (indexCount > 0) {
182 acquired = this->onReserveIndexSpace(indexCount, indices);
186 geoSrc.fIndexCount = indexCount;
195 int indexCount,
199 this->willReserveVertexAndIndexSpace(vertexCount, indexCount);
202 if (indexCount) {
208 if (indexCount) {
209 if (!this->reserveIndexSpace(indexCount, indices)) {
220 int32_t* indexCount) cons
194 reserveVertexAndIndexSpace(int vertexCount, int indexCount, void** vertices, void** indices) argument
286 setIndexSourceToArray(const void* indexArray, int indexCount) argument
473 drawIndexed(GrPrimitiveType type, int startVertex, int startIndex, int vertexCount, int indexCount, const SkRect* devBounds) argument
798 AutoReleaseGeometry( GrDrawTarget* target, int vertexCount, int indexCount) argument
814 set(GrDrawTarget* target, int vertexCount, int indexCount) argument
[all...]
H A DGrBufferAllocPool.h308 * @param indexCount number of indices to allocate space for
313 void* makeSpace(int indexCount,
320 bool appendIndices(int indexCount,
H A DGrInOrderDrawBuffer.cpp355 size_t bytes = (info.indexCount() + info.startIndex()) * sizeof(uint16_t);
634 int indexCount) {
648 !indexCount &&
656 int icount = indexCount;
669 int* indexCount) const {
674 if (indexCount) {
676 if (*indexCount > currIndices &&
678 *indexCount <= fIndexPool.preallocatedBufferIndices())) {
682 *indexCount = currIndices;
713 bool GrInOrderDrawBuffer::onReserveIndexSpace(int indexCount, voi argument
633 willReserveVertexAndIndexSpace(int vertexCount, int indexCount) argument
778 onSetIndexSourceToArray(const void* indexArray, int indexCount) argument
[all...]
H A DGrBufferAllocPool.cpp459 void* GrIndexBufferAllocPool::makeSpace(int indexCount, argument
463 SkASSERT(indexCount >= 0);
469 void* ptr = INHERITED::makeSpace(indexCount * sizeof(uint16_t),
480 bool GrIndexBufferAllocPool::appendIndices(int indexCount, argument
484 void* space = makeSpace(indexCount, buffer, startIndex);
486 memcpy(space, indices, sizeof(uint16_t) * indexCount);
H A DGrInOrderDrawBuffer.h76 int* indexCount) const SK_OVERRIDE;
215 virtual bool onReserveIndexSpace(int indexCount,
222 int indexCount) SK_OVERRIDE;
228 int indexCount) SK_OVERRIDE;
H A DGrGpu.cpp442 bool GrGpu::onReserveIndexSpace(int indexCount, void** indices) { argument
445 SkASSERT(indexCount > 0);
450 *indices = fIndexPool->makeSpace(indexCount,
491 void GrGpu::onSetIndexSourceToArray(const void* indexArray, int indexCount) { argument
497 fIndexPool->appendIndices(indexCount,
/external/skia/src/gpu/
H A DGrDrawTarget.h171 * indexCount.
178 * source is reset and likewise for indexCount.
187 * @param indexCount the number of indices to reserve space for. Can be 0.
190 * @param indices will point to reserved index space if indexCount is
191 * non-zero. Illegal to pass NULL if indexCount > 0.
194 int indexCount,
212 * @param indexCount in: hint about how many indices the caller would
221 int* indexCount) const;
238 * @param indexCount the number of indices in the array.
240 void setIndexSourceToArray(const void* indexArray, int indexCount);
820 int indexCount() const { return fIndexCount; } function in class:GrDrawTarget::DrawInfo
879 willReserveVertexAndIndexSpace(int vertexCount, int indexCount) argument
[all...]
H A DGrDrawTarget.cpp172 bool GrDrawTarget::reserveIndexSpace(int indexCount, argument
176 if (indexCount > 0) {
181 acquired = this->onReserveIndexSpace(indexCount, indices);
185 geoSrc.fIndexCount = indexCount;
194 int indexCount,
198 this->willReserveVertexAndIndexSpace(vertexCount, indexCount);
201 if (indexCount) {
207 if (indexCount) {
208 if (!this->reserveIndexSpace(indexCount, indices)) {
219 int32_t* indexCount) cons
193 reserveVertexAndIndexSpace(int vertexCount, int indexCount, void** vertices, void** indices) argument
285 setIndexSourceToArray(const void* indexArray, int indexCount) argument
463 drawIndexed(GrPrimitiveType type, int startVertex, int startIndex, int vertexCount, int indexCount, const SkRect* devBounds) argument
824 AutoReleaseGeometry( GrDrawTarget* target, int vertexCount, int indexCount) argument
840 set(GrDrawTarget* target, int vertexCount, int indexCount) argument
[all...]
H A DGrBufferAllocPool.h308 * @param indexCount number of indices to allocate space for
313 void* makeSpace(int indexCount,
320 bool appendIndices(int indexCount,
H A DGrInOrderDrawBuffer.h71 int* indexCount) const SK_OVERRIDE;
165 virtual bool onReserveIndexSpace(int indexCount,
172 int indexCount) SK_OVERRIDE;
178 int indexCount) SK_OVERRIDE;
H A DGrInOrderDrawBuffer.cpp400 size_t indexBytes = (info.indexCount() + info.startIndex()) * sizeof(uint16_t);
717 int indexCount) {
731 !indexCount &&
739 int icount = indexCount;
752 int* indexCount) const {
757 if (NULL != indexCount) {
759 if (*indexCount > currIndices &&
761 *indexCount <= fIndexPool.preallocatedBufferIndices())) {
765 *indexCount = currIndices;
796 bool GrInOrderDrawBuffer::onReserveIndexSpace(int indexCount, voi argument
716 willReserveVertexAndIndexSpace(int vertexCount, int indexCount) argument
863 onSetIndexSourceToArray(const void* indexArray, int indexCount) argument
[all...]
H A DGrBufferAllocPool.cpp448 void* GrIndexBufferAllocPool::makeSpace(int indexCount, argument
452 SkASSERT(indexCount >= 0);
458 void* ptr = INHERITED::makeSpace(indexCount * sizeof(uint16_t),
469 bool GrIndexBufferAllocPool::appendIndices(int indexCount, argument
473 void* space = makeSpace(indexCount, buffer, startIndex);
475 memcpy(space, indices, sizeof(uint16_t) * indexCount);
H A DGrGpu.cpp495 bool GrGpu::onReserveIndexSpace(int indexCount, void** indices) { argument
498 SkASSERT(indexCount > 0);
503 *indices = fIndexPool->makeSpace(indexCount,
544 void GrGpu::onSetIndexSourceToArray(const void* indexArray, int indexCount) { argument
550 fIndexPool->appendIndices(indexCount,
/external/chromium_org/third_party/skia/include/utils/
H A DSkMeshUtils.h30 int indexCount() const { return fIndexCount; } function in class:SkMeshIndices
/external/skia/include/utils/
H A DSkMeshUtils.h30 int indexCount() const { return fIndexCount; } function in class:SkMeshIndices
/external/replicaisland/src/com/replica/replicaisland/
H A DGrid.java108 int indexCount = quadCount * 6;
109 mIndexCount = indexCount;
110 mIndexBuffer = ByteBuffer.allocateDirect(CHAR_SIZE * indexCount)
240 public void drawStrip(GL10 gl, boolean useTexture, int startIndex, int indexCount) { argument
241 int count = indexCount;
242 if (startIndex + indexCount >= mIndexCount) {
/external/chromium_org/third_party/icu/source/test/letest/
H A Dxmlreader.cpp181 int32_t glyphCount = 0, indexCount = 0, positionCount = 0; local
227 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
232 if (glyphCount < charCount || indexCount != glyphCount || positionCount < glyphCount * 2 + 2) {
233 log_err("Test %s: inconsistent input data: charCount = %d, glyphCount = %d, indexCount = %d, positionCount = %d\n",
234 id, charCount, glyphCount, indexCount, positionCount);
/external/chromium_org/third_party/icu/source/test/perf/leperf/
H A Dxmlreader.cpp181 int32_t glyphCount = 0, indexCount = 0, positionCount = 0; local
227 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
232 if (glyphCount < charCount || indexCount != glyphCount || positionCount < glyphCount * 2 + 2) {
233 log_err("Test %s: inconsistent input data: charCount = %d, glyphCount = %d, indexCount = %d, positionCount = %d\n",
234 id, charCount, glyphCount, indexCount, positionCount);
/external/icu/icu4c/source/test/letest/
H A Dxmlreader.cpp181 int32_t glyphCount = 0, indexCount = 0, positionCount = 0; local
227 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
232 if (glyphCount < charCount || indexCount != glyphCount || positionCount < glyphCount * 2 + 2) {
233 log_err("Test %s: inconsistent input data: charCount = %d, glyphCount = %d, indexCount = %d, positionCount = %d\n",
234 id, charCount, glyphCount, indexCount, positionCount);
/external/icu/icu4c/source/test/perf/leperf/
H A Dxmlreader.cpp181 int32_t glyphCount = 0, indexCount = 0, positionCount = 0; local
227 expected.indices = (le_int32 *) getHexArray(indices, indexCount);
232 if (glyphCount < charCount || indexCount != glyphCount || positionCount < glyphCount * 2 + 2) {
233 log_err("Test %s: inconsistent input data: charCount = %d, glyphCount = %d, indexCount = %d, positionCount = %d\n",
234 id, charCount, glyphCount, indexCount, positionCount);
/external/libcxxabi/include/mach-o/
H A Dcompact_unwind_encoding.h414 uint32_t indexCount; member in struct:unwind_info_section_header

Completed in 3709 milliseconds

123456