![JAR search and dependency download from the Maven repository](/logo.png)
de.lessvoid.coregl.UniformBlockInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coregl-utils Show documentation
Show all versions of coregl-utils Show documentation
simple utility methods to make life with OpenGL core profile simpler
The newest version!
package de.lessvoid.coregl;
public class UniformBlockInfo {
public String name;
int offset;
int arrayStride;
int matrixStride;
@Override
public String toString() {
final StringBuilder builder = new StringBuilder();
builder.append("[");
builder.append("name: ").append(name).append(", ");
builder.append("offset: ").append(offset).append(", ");
builder.append("arrayStride: ").append(arrayStride).append(", ");
builder.append("matrixStride: ").append(matrixStride);
builder.append("]");
return builder.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy