Java 类org.lwjgl.util.generator.Signedness 实例源码

项目:PhET    文件:GLTypeMap.java   
public Signedness getSignednessFromType(Class type) {
    if ( GLuint.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLushort.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLshort.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLubyte.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLbyte.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLuint64EXT.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint64EXT.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLuint64.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint64.class.equals(type) )
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:Wolf_game    文件:GLTypeMap.java   
public Signedness getSignednessFromType(Class type) {
    if ( GLuint.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLushort.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLshort.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLubyte.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLbyte.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLuint64EXT.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint64EXT.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLuint64.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint64.class.equals(type) )
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:Wolf_game    文件:GLESTypeMap.java   
public Signedness getSignednessFromType(Class<? extends Annotation> type) {
    if ( GLuint.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLushort.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLshort.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLubyte.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLbyte.class.equals(type) )
        return Signedness.SIGNED;
    else if ( EGLuint64NV.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( EGLint64NV.class.equals(type) )
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:GPVM    文件:GLTypeMap.java   
public Signedness getSignednessFromType(Class type) {
    if ( GLuint.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLushort.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLshort.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLubyte.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLbyte.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLuint64EXT.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint64EXT.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLuint64.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint64.class.equals(type) )
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:GPVM    文件:GLESTypeMap.java   
public Signedness getSignednessFromType(Class<? extends Annotation> type) {
    if ( GLuint.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLushort.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLshort.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLubyte.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLbyte.class.equals(type) )
        return Signedness.SIGNED;
    else if ( EGLuint64NV.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( EGLint64NV.class.equals(type) )
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:GPVM    文件:GLTypeMap.java   
public Signedness getSignednessFromType(Class type) {
    if ( GLuint.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLushort.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLshort.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLubyte.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLbyte.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLuint64EXT.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint64EXT.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLuint64.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint64.class.equals(type) )
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:GPVM    文件:GLESTypeMap.java   
public Signedness getSignednessFromType(Class<? extends Annotation> type) {
    if ( GLuint.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLushort.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLshort.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLubyte.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLbyte.class.equals(type) )
        return Signedness.SIGNED;
    else if ( EGLuint64NV.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( EGLint64NV.class.equals(type) )
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:SpaceStationAlpha    文件:GLTypeMap.java   
public Signedness getSignednessFromType(Class type) {
    if ( GLuint.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLushort.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLshort.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLubyte.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLbyte.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLuint64EXT.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint64EXT.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLuint64.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint64.class.equals(type) )
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:SpaceStationAlpha    文件:GLESTypeMap.java   
public Signedness getSignednessFromType(Class<? extends Annotation> type) {
    if ( GLuint.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLushort.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLshort.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLubyte.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLbyte.class.equals(type) )
        return Signedness.SIGNED;
    else if ( EGLuint64NV.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( EGLint64NV.class.equals(type) )
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:TeacherSmash    文件:GLTypeMap.java   
public Signedness getSignednessFromType(Class type) {
    if ( GLuint.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLushort.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLshort.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLubyte.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLbyte.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLuint64EXT.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint64EXT.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLuint64.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint64.class.equals(type) )
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:TeacherSmash    文件:GLESTypeMap.java   
public Signedness getSignednessFromType(Class<? extends Annotation> type) {
    if ( GLuint.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLushort.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLshort.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLubyte.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLbyte.class.equals(type) )
        return Signedness.SIGNED;
    else if ( EGLuint64NV.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( EGLint64NV.class.equals(type) )
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:3d-Demo    文件:GLTypeMap.java   
public Signedness getSignednessFromType(Class type) {
    if ( GLuint.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLushort.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLshort.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLubyte.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLbyte.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLuint64EXT.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint64EXT.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLuint64.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint64.class.equals(type) )
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:3d-Demo    文件:GLESTypeMap.java   
public Signedness getSignednessFromType(Class<? extends Annotation> type) {
    if ( GLuint.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLint.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLushort.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLshort.class.equals(type) )
        return Signedness.SIGNED;
    else if ( GLubyte.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( GLbyte.class.equals(type) )
        return Signedness.SIGNED;
    else if ( EGLuint64NV.class.equals(type) )
        return Signedness.UNSIGNED;
    else if ( EGLint64NV.class.equals(type) )
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:PhET    文件:ALTypeMap.java   
public Signedness getSignednessFromType(Class type) {
    if (ALuint.class.equals(type))
        return Signedness.UNSIGNED;
    else if (ALint.class.equals(type))
        return Signedness.SIGNED;
    else if (ALshort.class.equals(type))
        return Signedness.SIGNED;
    else if (ALbyte.class.equals(type))
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:Wolf_game    文件:ALTypeMap.java   
public Signedness getSignednessFromType(Class type) {
    if (ALuint.class.equals(type))
        return Signedness.UNSIGNED;
    else if (ALint.class.equals(type))
        return Signedness.SIGNED;
    else if (ALshort.class.equals(type))
        return Signedness.SIGNED;
    else if (ALbyte.class.equals(type))
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:GPVM    文件:ALTypeMap.java   
public Signedness getSignednessFromType(Class type) {
    if (ALuint.class.equals(type))
        return Signedness.UNSIGNED;
    else if (ALint.class.equals(type))
        return Signedness.SIGNED;
    else if (ALshort.class.equals(type))
        return Signedness.SIGNED;
    else if (ALbyte.class.equals(type))
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:GPVM    文件:ALTypeMap.java   
public Signedness getSignednessFromType(Class type) {
    if (ALuint.class.equals(type))
        return Signedness.UNSIGNED;
    else if (ALint.class.equals(type))
        return Signedness.SIGNED;
    else if (ALshort.class.equals(type))
        return Signedness.SIGNED;
    else if (ALbyte.class.equals(type))
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:SpaceStationAlpha    文件:ALTypeMap.java   
public Signedness getSignednessFromType(Class type) {
    if (ALuint.class.equals(type))
        return Signedness.UNSIGNED;
    else if (ALint.class.equals(type))
        return Signedness.SIGNED;
    else if (ALshort.class.equals(type))
        return Signedness.SIGNED;
    else if (ALbyte.class.equals(type))
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:TeacherSmash    文件:ALTypeMap.java   
public Signedness getSignednessFromType(Class type) {
    if (ALuint.class.equals(type))
        return Signedness.UNSIGNED;
    else if (ALint.class.equals(type))
        return Signedness.SIGNED;
    else if (ALshort.class.equals(type))
        return Signedness.SIGNED;
    else if (ALbyte.class.equals(type))
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}
项目:3d-Demo    文件:ALTypeMap.java   
public Signedness getSignednessFromType(Class type) {
    if (ALuint.class.equals(type))
        return Signedness.UNSIGNED;
    else if (ALint.class.equals(type))
        return Signedness.SIGNED;
    else if (ALshort.class.equals(type))
        return Signedness.SIGNED;
    else if (ALbyte.class.equals(type))
        return Signedness.SIGNED;
    else
        return Signedness.NONE;
}