Examples of ShaderVariablePointerFloatMatrix


Examples of com.ardor3d.util.shader.uniformtypes.ShaderVariablePointerFloatMatrix

     * @param data
     *            The actual data to use as attribute pointer
     */
    public void setAttributePointerMatrix(final String name, final int size, final boolean normalized,
            final FloatBufferData data) {
        final ShaderVariablePointerFloatMatrix shaderUniform = getShaderAttribute(name,
                ShaderVariablePointerFloatMatrix.class);
        shaderUniform.size = size;
        shaderUniform.normalized = normalized;
        shaderUniform.data = data;

View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.