예제 #1
0
 public void setPrimitiveCount(int count)
 {
     IndexBuffer.requireValidPrimitiveCount(count);
     this.m_primitiveCount = count;
 }
예제 #2
0
 public void setPrimitiveType(int type)
 {
     IndexBuffer.requireValidType(type);
     this.m_type = type;
 }
예제 #3
0
 public void setFirstIndex(int index)
 {
     IndexBuffer.requireValidIndex(index);
     this.m_firstIndex = index;
 }