本文整理汇总了Java中org.andengine.util.adt.data.constants.DataConstants.BYTES_PER_BYTE属性的典型用法代码示例。如果您正苦于以下问题:Java DataConstants.BYTES_PER_BYTE属性的具体用法?Java DataConstants.BYTES_PER_BYTE怎么用?Java DataConstants.BYTES_PER_BYTE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.andengine.util.adt.data.constants.DataConstants
的用法示例。
在下文中一共展示了DataConstants.BYTES_PER_BYTE属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: add
public VertexBufferObjectAttributesBuilder add(final int pLocation, final String pName, final int pSize, final int pType, final boolean pNormalized) {
if (VertexBufferObjectAttributesBuilder.WORAROUND_GLES2_GLVERTEXATTRIBPOINTER_MISSING) {
this.mVertexBufferObjectAttributes[this.mIndex] = new VertexBufferObjectAttributeFix(pLocation, pName, pSize, pType, pNormalized, this.mOffset);
} else {
this.mVertexBufferObjectAttributes[this.mIndex] = new VertexBufferObjectAttribute(pLocation, pName, pSize, pType, pNormalized, this.mOffset);
}
switch (pType) {
case GLES20.GL_FLOAT:
this.mOffset += pSize * DataConstants.BYTES_PER_FLOAT;
break;
case GLES20.GL_UNSIGNED_BYTE:
this.mOffset += pSize * DataConstants.BYTES_PER_BYTE;
break;
default:
throw new IllegalArgumentException("Unexpected pType: '" + pType + "'.");
}
this.mIndex++;
return this;
}