(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, ByteBuffer pixels)
| 2042 | } |
| 2043 | |
| 2044 | @DocumentationProxyTo(GL11.class) |
| 2045 | public static void glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, ByteBuffer pixels) { |
| 2046 | check(() -> GL11.glTexSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels)); |
| 2047 | } |
| 2048 | |
| 2049 | @DocumentationProxyTo(GL11.class) |
| 2050 | public static void glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, long pixels) { |
no test coverage detected