summaryrefslogtreecommitdiff
path: root/src/screen/drm/request/encoder.zig
blob: 3cf798531dd7bc0ff6a771290031dbaeac074bf0 (plain)
1
2
3
4
5
6
7
8
9
const drm = @import("../root.zig");

pub const Encoder = extern struct {
	id: u32,
	type: drm.Encoder.Kind,
	crtc_id: u32,
	possible_crtcs: u32,
	possible_clones: u32,
};