forked from mirror/vulkan-zig
Make graphics_context.zig naming consistent
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const vk = @import("vulkan");
|
const vk = @import("vulkan");
|
||||||
const GraphicsContext = @import("graphics-context.zig").GraphicsContext;
|
const GraphicsContext = @import("graphics_context.zig").GraphicsContext;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
|
|
||||||
pub const Swapchain = struct {
|
pub const Swapchain = struct {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ const std = @import("std");
|
|||||||
const vk = @import("vulkan");
|
const vk = @import("vulkan");
|
||||||
const c = @import("c.zig");
|
const c = @import("c.zig");
|
||||||
const resources = @import("resources");
|
const resources = @import("resources");
|
||||||
const GraphicsContext = @import("graphics-context.zig").GraphicsContext;
|
const GraphicsContext = @import("graphics_context.zig").GraphicsContext;
|
||||||
const Swapchain = @import("swapchain.zig").Swapchain;
|
const Swapchain = @import("swapchain.zig").Swapchain;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user