HomeSort by relevance Sort by last modified time
    Searched defs:indices (Results 26 - 50 of 228) sorted by null

12 3 4 5 6 7 8 910

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_llvm_sample.c 97 LLVMValueRef indices[4]; local
104 indices[0] = lp_build_const_int32(gallivm, 0);
106 indices[1] = lp_build_const_int32(gallivm, DRAW_JIT_CTX_TEXTURES);
108 indices[2] = lp_build_const_int32(gallivm, unit);
110 indices[3] = lp_build_const_int32(gallivm, member_index);
112 ptr = LLVMBuildGEP(builder, state->context_ptr, indices, Elements(indices), "");
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_tex_sample.c 102 LLVMValueRef indices[4]; local
109 indices[0] = lp_build_const_int32(gallivm, 0);
111 indices[1] = lp_build_const_int32(gallivm, LP_JIT_CTX_TEXTURES);
113 indices[2] = lp_build_const_int32(gallivm, unit);
115 indices[3] = lp_build_const_int32(gallivm, member_index);
117 ptr = LLVMBuildGEP(builder, state->context_ptr, indices, Elements(indices), "");
  /external/eigen/demos/opengl/
icosphere.cpp 42 std::vector<int>& indices = *mIndices.back(); local
46 indices.push_back(tindices[i][k]);
54 const std::vector<int>& IcoSphere::indices(int level) const function in class:IcoSphere
65 const std::vector<int>& indices = *mIndices.back(); local
68 int end = indices.size();
71 int ids0[3], // indices of outer vertices
72 ids1[3]; // indices of edge vertices
76 int e0 = indices[i+k];
77 int e1 = indices[i+k1];
  /external/freetype/src/psaux/
t1cmap.h 75 FT_UShort* indices; member in struct:T1_CMapCustomRec_
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_llvm_sample.c 97 LLVMValueRef indices[4]; local
104 indices[0] = lp_build_const_int32(gallivm, 0);
106 indices[1] = lp_build_const_int32(gallivm, DRAW_JIT_CTX_TEXTURES);
108 indices[2] = lp_build_const_int32(gallivm, unit);
110 indices[3] = lp_build_const_int32(gallivm, member_index);
112 ptr = LLVMBuildGEP(builder, state->context_ptr, indices, Elements(indices), "");
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_tex_sample.c 102 LLVMValueRef indices[4]; local
109 indices[0] = lp_build_const_int32(gallivm, 0);
111 indices[1] = lp_build_const_int32(gallivm, LP_JIT_CTX_TEXTURES);
113 indices[2] = lp_build_const_int32(gallivm, unit);
115 indices[3] = lp_build_const_int32(gallivm, member_index);
117 ptr = LLVMBuildGEP(builder, state->context_ptr, indices, Elements(indices), "");
  /external/ceres-solver/internal/ceres/
parameter_block_test.cc 43 // The indices to set constant within the parameter block (used later).
44 vector<int> indices; local
45 indices.push_back(1);
48 SubsetParameterization subset_wrong_size(4, indices);
57 SubsetParameterization subset(3, indices);
67 SubsetParameterization subset_different(3, indices);
  /external/chromium_org/chrome/browser/sync/test/integration/
extensions_helper.cc 71 std::vector<int> indices; local
78 indices.push_back(index);
81 return indices;
  /external/chromium_org/gpu/command_buffer/tests/
gl_stream_draw_unittests.cc 100 static GLubyte indices[] = { 0, 1, 2, 3, 4, 5, }; local
102 GL_ELEMENT_ARRAY_BUFFER, sizeof(indices), indices, GL_STREAM_DRAW);
108 GL_ELEMENT_ARRAY_BUFFER, sizeof(indices), indices, GL_STATIC_DRAW);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
CustomFilterMeshGenerator.h 48 const Vector<uint16_t>& indices() const { return m_indices; } function in class:WebCore::CustomFilterMeshGenerator
  /external/chromium_org/third_party/angle_dx11/samples/angle/Simple_Instancing/
Simple_Instancing.c 154 GLushort indices[] = { 0, 1, 2, 0, 2, 3 }; local
192 glDrawElementsInstancedANGLE ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices, 2 );
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/MultiTexture/
MultiTexture.c 139 GLushort indices[] = { 0, 1, 2, 0, 2, 3 }; local
174 glDrawElements ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices );
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/MultipleRenderTargets/
MultipleRenderTargets.c 193 GLushort indices[] = { 0, 1, 2, 0, 2, 3 }; local
228 glDrawElements ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices );
237 glDrawElements ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices );
241 glDrawElements ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices );
245 glDrawElements ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices );
249 glDrawElements ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices );
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/PostSubBuffer/
PostSubBuffer.c 37 GLushort *indices; member in struct:__anon12943
79 NULL, NULL, &userData->indices );
158 glDrawElements ( GL_TRIANGLES, userData->numIndices, GL_UNSIGNED_SHORT, userData->indices );
175 if ( userData->indices != NULL )
177 free ( userData->indices );
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Simple_VertexShader/
Simple_VertexShader.c 32 GLushort *indices; member in struct:__anon12946
74 NULL, NULL, &userData->indices );
148 glDrawElements ( GL_TRIANGLES, userData->numIndices, GL_UNSIGNED_SHORT, userData->indices );
165 if ( userData->indices != NULL )
167 free ( userData->indices );
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/TextureWrap/
TextureWrap.c 172 GLushort indices[] = { 0, 1, 2, 0, 2, 3 }; local
204 glDrawElements ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices );
210 glDrawElements ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices );
216 glDrawElements ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices );
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texcompress_cpal.c 83 const void *indices, GLuint num_pixels, GLubyte *image)
90 const GLubyte *ind = (const GLubyte *) indices;
104 const GLubyte *ind = (const GLubyte *) indices;
173 const GLubyte *indices; local
187 indices = (const GLubyte *) palette + info->palette_size * info->size;
212 paletted_to_color(info, palette, indices, num_texels, image);
222 indices += (num_texels + 1) / 2;
224 indices += num_texels;
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Pose.java 50 private int[] indices; field in class:Pose
55 public Pose(String name, int targetMeshIndex, Vector3f[] offsets, int[] indices){
59 this.indices = indices;
74 for (int i = 0; i < indices.length; i++){
76 int vertIndex = indices[i];
98 result.indices = this.indices.clone();
116 out.write(indices, "indices", null)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
EmitterMeshFaceShape.java 38 int[] indices = new int[3]; local
42 mesh.getTriangle(i, indices);
43 vertices.add(vertexTable[indices[0]]);
44 vertices.add(vertexTable[indices[1]]);
45 vertices.add(vertexTable[indices[2]]);
46 normals.add(FastMath.computeNormal(vertexTable[indices[0]], vertexTable[indices[1]], vertexTable[indices[2]]));
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
PrimitiveGroup.java 45 public int[] indices; field in class:PrimitiveGroup
74 if (indices[i] == prev) {
79 prev = indices[i];
99 if ( indices.length == numIndices )
100 return indices;
102 System.arraycopy(indices,0,nind,0,numIndices);
  /external/mesa3d/src/mesa/main/
texcompress_cpal.c 83 const void *indices, GLuint num_pixels, GLubyte *image)
90 const GLubyte *ind = (const GLubyte *) indices;
104 const GLubyte *ind = (const GLubyte *) indices;
173 const GLubyte *indices; local
187 indices = (const GLubyte *) palette + info->palette_size * info->size;
212 paletted_to_color(info, palette, indices, num_texels, image);
222 indices += (num_texels + 1) / 2;
224 indices += num_texels;
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
Converter.java 231 IndexBuffer indices = mesh.getIndicesAsList(); local
248 jBulletIndexedMesh.triangleIndexBase.putInt(indices.get(i));
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestCustomAnim.java 83 ByteBuffer indices = ByteBuffer.allocate( box.getVertexCount() * 4 ); local
85 indicesBuf.setupData(Usage.CpuOnly, 4, Format.UnsignedByte, indices);
100 indices.array()[i+0] = 0;
101 indices.array()[i+1] = 0;
102 indices.array()[i+2] = 0;
103 indices.array()[i+3] = 0;
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_InstanceNonce.c 100 static int indices[] = { 0, 50, 99 }; local
129 (*env)->SetObjectArrayElement(env, result, indices[i], s);
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/MipMap2D/
MipMap2D.c 272 GLushort indices[] = { 0, 1, 2, 0, 2, 3 }; local
303 glDrawElements ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices );
308 glDrawElements ( GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, indices );

Completed in 858 milliseconds

12 3 4 5 6 7 8 910