Skip to documentation
SLOP

tiny.tracy.GpuContextType

Reference tiny.tracy GpuContextType

Defined in tiny.tracy.

API (8)

Actions

Public operations.

Fields and members

Public fields and members.

No direct callersNo direct callstiny.tracyGpuContextType
Static calls · unresolved targets: unknown · external targets: unknown.

Source

Source: lib/tracy/src/runtime.zig:124

zig
pub const GpuContextType = enum {    unknown,    opengl,    vulkan,    direct3d11,    direct3d12,    metal,    custom,    pub fn tag(self: GpuContextType) ?[]const u8 {        return switch (self) {            .unknown => null,            .opengl => "opengl",            .vulkan => "vulkan",            .direct3d11 => "direct3d11",            .direct3d12 => "direct3d12",            .metal => "metal",            .custom => "custom",        };    }};

Source: lib/tracy/src/root.zig:75

zig
pub const GpuContextType = runtime.GpuContextType;

Audit

Definitions2
Public names2
Members7
Version26.7.0
Revisiondaab053ee433