mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-05-30 08:45:23 +00:00
@cImport is going to disappear in Zig 0.17. Its deprecated in Zig 0.16. Let's remove it now. Replace @cImport with addTranslateC across pkg/ packages. Each package now has a c_import.h header that is translated at build time via addTranslateC and exposed as a "cimport" module import. Converted packages: - dcimgui - fontconfig - freetype - glslang - harfbuzz - macos - oniguruma - opengl - sentry - spirv-cross - wuffs Omitted: - gtk4-layer-shell - This has a bit more complexity with how it interacts with GTK headers, so I need to consider this a bit more. - src/ - It'll be cleaner to do this separately.
44 lines
964 B
Zig
44 lines
964 B
Zig
const Sampler = @This();
|
|
|
|
const std = @import("std");
|
|
const c = @import("c");
|
|
const errors = @import("errors.zig");
|
|
const glad = @import("glad.zig");
|
|
const Texture = @import("Texture.zig");
|
|
|
|
id: c.GLuint,
|
|
|
|
/// Create a single sampler.
|
|
pub fn create() errors.Error!Sampler {
|
|
var id: c.GLuint = undefined;
|
|
glad.context.GenSamplers.?(1, &id);
|
|
try errors.getError();
|
|
return .{ .id = id };
|
|
}
|
|
|
|
/// glBindSampler
|
|
pub fn bind(v: Sampler, index: c_uint) !void {
|
|
glad.context.BindSampler.?(index, v.id);
|
|
try errors.getError();
|
|
}
|
|
|
|
pub fn parameter(
|
|
self: Sampler,
|
|
name: Texture.Parameter,
|
|
value: anytype,
|
|
) errors.Error!void {
|
|
switch (@TypeOf(value)) {
|
|
c.GLint => glad.context.SamplerParameteri.?(
|
|
self.id,
|
|
@intFromEnum(name),
|
|
value,
|
|
),
|
|
else => unreachable,
|
|
}
|
|
try errors.getError();
|
|
}
|
|
|
|
pub fn destroy(v: Sampler) void {
|
|
glad.context.DeleteSamplers.?(1, &v.id);
|
|
}
|