(int target, int level, int internalformat, int width, int height, int border, int format, int type, ByteBuffer pixels)
| 1912 | } |
| 1913 | |
| 1914 | @DocumentationProxyTo(GL11.class) |
| 1915 | public static void glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, ByteBuffer pixels) { |
| 1916 | check(() -> GL11.glTexImage2D(target, level, internalformat, width, height, border, format, type, pixels)); |
| 1917 | } |
| 1918 | |
| 1919 | @DocumentationProxyTo(GL11.class) |
| 1920 | public static void glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, long pixels) { |
no test coverage detected