Skip to content

Commit e483862

Browse files
authored
Merge pull request #113 from Nairou/master
Remove broken uniform wrappers
2 parents f04d08d + f905460 commit e483862

File tree

1 file changed

+0
-28
lines changed

1 file changed

+0
-28
lines changed

src/zgl.zig

-28
Original file line numberDiff line numberDiff line change
@@ -1285,34 +1285,6 @@ pub fn uniform4uiv(location: ?u32, items: []const [4]u32) void {
12851285
}
12861286
}
12871287

1288-
pub fn uniform1i64(location: ?u32, v0: i64) void {
1289-
if (location) |loc| {
1290-
binding.uniform1i64ARB(@as(types.Int, @intCast(loc)), v0);
1291-
checkError();
1292-
}
1293-
}
1294-
1295-
pub fn uniform2i64(location: ?u32, v0: i64, v1: i64) void {
1296-
if (location) |loc| {
1297-
binding.uniform2i64ARB(@as(types.Int, @intCast(loc)), v0, v1);
1298-
checkError();
1299-
}
1300-
}
1301-
1302-
pub fn uniform3i64(location: ?u32, v0: i64, v1: i64, v2: i64) void {
1303-
if (location) |loc| {
1304-
binding.uniform3i64ARB(@as(types.Int, @intCast(loc)), v0, v1, v2);
1305-
checkError();
1306-
}
1307-
}
1308-
1309-
pub fn uniform4i64(location: ?u32, v0: i64, v1: i64, v2: i64, v3: i64) void {
1310-
if (location) |loc| {
1311-
binding.uniform4i64ARB(@as(types.Int, @intCast(loc)), v0, v1, v2, v3);
1312-
checkError();
1313-
}
1314-
}
1315-
13161288
pub fn uniformMatrix4fv(location: ?u32, transpose: bool, items: []const [4][4]f32) void {
13171289
if (location) |loc| {
13181290
binding.uniformMatrix4fv(

0 commit comments

Comments
 (0)