-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
2,944 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
688 changes: 688 additions & 0 deletions
688
modules/overrungl.opengl/src/generator/kotlin/overrungl/opengl/GLNV.kt
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
modules/overrungl.opengl/src/main/java/overrungl/opengl/ext/nv/GLNVTextureEnvCombine4.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* MIT License | ||
* | ||
* Copyright (c) 2022-present Overrun Organization | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
*/ | ||
|
||
// This file is auto-generated. DO NOT EDIT! | ||
package overrungl.opengl.ext.nv; | ||
|
||
import overrungl.*; | ||
import overrungl.opengl.*; | ||
import java.lang.foreign.*; | ||
import static java.lang.foreign.FunctionDescriptor.*; | ||
import static java.lang.foreign.ValueLayout.*; | ||
import static overrungl.opengl.GLLoader.*; | ||
|
||
/** | ||
* {@code GL_NV_texture_env_combine4} | ||
*/ | ||
public final class GLNVTextureEnvCombine4 { | ||
public static final int GL_COMBINE4_NV = 0x8503; | ||
public static final int GL_SOURCE3_RGB_NV = 0x8583; | ||
public static final int GL_SOURCE3_ALPHA_NV = 0x858B; | ||
public static final int GL_OPERAND3_RGB_NV = 0x8593; | ||
public static final int GL_OPERAND3_ALPHA_NV = 0x859B; | ||
} |
32 changes: 32 additions & 0 deletions
32
modules/overrungl.opengl/src/main/java/overrungl/opengl/ext/nv/GLNVTextureExpandNormal.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* MIT License | ||
* | ||
* Copyright (c) 2022-present Overrun Organization | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
*/ | ||
|
||
// This file is auto-generated. DO NOT EDIT! | ||
package overrungl.opengl.ext.nv; | ||
|
||
import overrungl.*; | ||
import overrungl.opengl.*; | ||
import java.lang.foreign.*; | ||
import static java.lang.foreign.FunctionDescriptor.*; | ||
import static java.lang.foreign.ValueLayout.*; | ||
import static overrungl.opengl.GLLoader.*; | ||
|
||
/** | ||
* {@code GL_NV_texture_expand_normal} | ||
*/ | ||
public final class GLNVTextureExpandNormal { | ||
public static final int GL_TEXTURE_UNSIGNED_REMAP_MODE_NV = 0x888F; | ||
} |
Oops, something went wrong.