Compare commits

..

No commits in common. "95f48b28c70bb52d1d660d1c3b98417bf0c6a015" and "38211718e35f26296a696a0c17e063e6a84e3336" have entirely different histories.

3 changed files with 6 additions and 6 deletions

2
.vscode/tasks.json vendored
View File

@ -23,7 +23,7 @@
}, },
"problemMatcher": { "problemMatcher": {
"source": "zig", "source": "gcc",
"owner": "cpptools", "owner": "cpptools",
"fileLocation": [ "fileLocation": [

View File

@ -11,7 +11,7 @@ const sys = @import("./sys.zig");
/// Entry point. /// Entry point.
/// ///
pub fn main() anyerror!void { pub fn main() anyerror!void {
return nosuspend sys.runGraphics(anyerror, run); return sys.runGraphics(anyerror, run);
} }
test { test {

View File

@ -108,8 +108,8 @@ pub const EventLoop = opaque {
{ {
var status = @as(c_int, 0); var status = @as(c_int, 0);
// SDL2 defines waiting on a null thread reference as a no-op. See // SDL2 defines waiting on a null thread reference as a no-op.
// https://wiki.libsdl.org/SDL_WaitThread for more information // https://wiki.libsdl.org/SDL_WaitThread
ext.SDL_WaitThread(implementation.file_system_thread, &status); ext.SDL_WaitThread(implementation.file_system_thread, &status);
if (status != 0) { if (status != 0) {
@ -616,13 +616,13 @@ pub const GraphicsContext = opaque {
/// ///
/// ///
pub fn GraphicsRunner(comptime Errors: type) type { pub fn GraphicsRunner(comptime Errors: type) type {
return fn (*EventLoop, *GraphicsContext) callconv(.Async) Errors!void; return fn (*EventLoop, *GraphicsContext) Errors!void;
} }
/// ///
/// ///
/// ///
pub fn runGraphics(comptime Errors: anytype, comptime run: GraphicsRunner(Errors)) Errors!void { pub fn runGraphics(comptime Errors: anytype, run: GraphicsRunner(Errors)) Errors!void {
if (ext.SDL_Init(ext.SDL_INIT_EVERYTHING) != 0) { if (ext.SDL_Init(ext.SDL_INIT_EVERYTHING) != 0) {
ext.SDL_LogCritical(ext.SDL_LOG_CATEGORY_APPLICATION, "Failed to initialize runtime"); ext.SDL_LogCritical(ext.SDL_LOG_CATEGORY_APPLICATION, "Failed to initialize runtime");