Examples of GLvoid


Examples of org.lwjgl.util.generator.opengl.GLvoid

            multityped_result.remove(inverse_type_info);
          }
        }
        Class type;
        PrimitiveType.Kind kind;
        GLvoid void_annotation = param.getAnnotation(GLvoid.class);
        kind = void_annotation == null ? type_map.getPrimitiveTypeFromNativeType(annotation_type) : void_annotation.value();
        if (Utils.getNIOBufferType(decl_type) != null)
          type = getBufferTypeFromPrimitiveKind(kind);
        else
          type = getTypeFromPrimitiveKind(kind);
        TypeInfo type_info = new TypeInfo(type, signedness, auto_type);
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.