Package cc.plural.ecs.renderer

Examples of cc.plural.ecs.renderer.Uniform


            type.clear();
            String name = GL20.glGetActiveUniform(programHandle, i, 100, type);
            int location = GL20.glGetUniformLocation(programHandle, name);
            int typeValue = type.get(NO_SHADER);

            Uniform uniform = new LWJGLUniform();
            uniform.name = name;
            uniform.location = location;
            uniform.type = typeValue;

            uniforms[i] = uniform;
View Full Code Here

TOP

Related Classes of cc.plural.ecs.renderer.Uniform

Copyright © 2018 www.massapicom. 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.