本文整理匯總了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;
}