HomeSort by relevance Sort by last modified time
    Searched refs:indexCount (Results 1 - 25 of 175) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/third_party/skia/src/core/
SkVertState.h 27 VertState(int vCount, const uint16_t indices[], int indexCount)
31 fCount = indexCount;
  /external/skia/src/core/
SkVertState.h 27 VertState(int vCount, const uint16_t indices[], int indexCount)
31 fCount = indexCount;
  /frameworks/base/opengl/java/android/opengl/
Visibility.java 39 * @param indexCount the number of indices in use. Typically a multiple of
47 * indicesOffset < 0, indicesOffset > indices.length - indexCount
51 int indicesOffset, int indexCount);
  /external/chromium_org/third_party/skia/src/gpu/
GrDrawTarget.h 171 * 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);
    [all...]
GrDrawTarget.cpp 172 bool GrDrawTarget::reserveIndexSpace(int indexCount,
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) const
    [all...]
GrBufferAllocPool.h 308 * @param indexCount number of indices to allocate space for
313 void* makeSpace(int indexCount,
320 bool appendIndices(int indexCount,
GrInOrderDrawBuffer.h 71 int* indexCount) const SK_OVERRIDE;
165 virtual bool onReserveIndexSpace(int indexCount,
172 int indexCount) SK_OVERRIDE;
178 int indexCount) SK_OVERRIDE;
GrInOrderDrawBuffer.cpp 400 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, void** indices)
    [all...]
GrBufferAllocPool.cpp 448 void* GrIndexBufferAllocPool::makeSpace(int indexCount,
452 SkASSERT(indexCount >= 0);
458 void* ptr = INHERITED::makeSpace(indexCount * sizeof(uint16_t),
469 bool GrIndexBufferAllocPool::appendIndices(int indexCount,
473 void* space = makeSpace(indexCount, buffer, startIndex);
475 memcpy(space, indices, sizeof(uint16_t) * indexCount);
  /external/skia/src/gpu/
GrDrawTarget.h 171 * 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);
    [all...]
GrDrawTarget.cpp 172 bool GrDrawTarget::reserveIndexSpace(int indexCount,
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) const
    [all...]
GrBufferAllocPool.h 308 * @param indexCount number of indices to allocate space for
313 void* makeSpace(int indexCount,
320 bool appendIndices(int indexCount,
GrInOrderDrawBuffer.h 71 int* indexCount) const SK_OVERRIDE;
165 virtual bool onReserveIndexSpace(int indexCount,
172 int indexCount) SK_OVERRIDE;
178 int indexCount) SK_OVERRIDE;
GrInOrderDrawBuffer.cpp 400 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, void** indices)
    [all...]
GrBufferAllocPool.cpp 448 void* GrIndexBufferAllocPool::makeSpace(int indexCount,
452 SkASSERT(indexCount >= 0);
458 void* ptr = INHERITED::makeSpace(indexCount * sizeof(uint16_t),
469 bool GrIndexBufferAllocPool::appendIndices(int indexCount,
473 void* space = makeSpace(indexCount, buffer, startIndex);
475 memcpy(space, indices, sizeof(uint16_t) * indexCount);
  /external/chromium_org/third_party/skia/include/utils/
SkMeshUtils.h 30 int indexCount() const { return fIndexCount; }
  /external/skia/include/utils/
SkMeshUtils.h 30 int indexCount() const { return fIndexCount; }
  /frameworks/base/libs/hwui/
VertexBuffer.h 82 TYPE* allocIndices(int indexCount) {
83 mAllocatedIndexCount = indexCount;
84 mIndexCount = indexCount;
85 mIndices = (void*)new TYPE[indexCount];
Patch.h 51 uint32_t indexCount;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
Grid.java 56 int indexCount = quadCount * 6;
57 mIndexCount = indexCount;
58 mIndexBuffer = ByteBuffer.allocateDirect(CHAR_SIZE * indexCount)
  /external/replicaisland/src/com/replica/replicaisland/
Grid.java 108 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) {
241 int count = indexCount;
242 if (startIndex + indexCount >= mIndexCount) {
  /external/chromium_org/third_party/icu/source/test/letest/
xmlreader.cpp 181 int32_t glyphCount = 0, indexCount = 0, positionCount = 0;
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/
xmlreader.cpp 181 int32_t glyphCount = 0, indexCount = 0, positionCount = 0;
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/
xmlreader.cpp 181 int32_t glyphCount = 0, indexCount = 0, positionCount = 0;
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/skia/experimental/PdfViewer/
SkTrackDevice.h 145 const uint16_t indices[], int indexCount,
149 indexCount, paint);

Completed in 399 milliseconds

1 2 3 4 5 6 7