Jason Beetham

Results 28 issues of Jason Beetham

`let shadowMap = win.newTexture2D[: Depth32](vec2i(4096, 4096)).toFramebuffer()` Results in: ``` /home/jason/truss3d/src/truss3d.nim(112, 61) template/generic instantiation of `toFramebuffer` from here /home/jason/.nimble/pkgs/aglet-0.4.4/aglet/texture.nim(866, 49) template/generic instantiation of `source` from here /home/jason/.nimble/pkgs/aglet-0.4.4/aglet/texture.nim(860, 19) Error: type mismatch:...

Recently updating from a library version to another and it'd be nice if one could force Opir to rerun. This could use `compileOption"forceBuild"` to align with the compiler's force rebuild...

Attempting to wrap wasmedge for instance fails due to hitting `__int128`. The following is what I'm using if it helps. In this API one does not directly touch the data...

This PR is another attempt at making macros/templates less difficult to understand when something is semantically wrong with their usage. It uses a table to hold onto expanded macros for...

This PR uses ANSI colours to make the terminal output of errors quicker to read and spacing out the errors for overload errors. Highlighting the actual issues. Also adds a...

stale

Without an audio device [this uncatched call](https://github.com/ftsf/nico/blob/master/nico/backends/sdl2.nim#L1636) crashes the binary. Probably should set an internal bool so any future audio calls do not crash it.

Allows user enabled templates to be emitted with `-d:godotSelflessFields` so you only need to use `self.` if there is ambiguity or calling procedures/methods an example is as follows ```nim #Nim...

I just spent 10-20 minutes to hunt down why I could not echo a `byte`, which is cause of https://github.com/Vladar4/sdl2_nim/blob/43bbdb99e01aa3d2117fc536dd6b0ed3280791a9/sdl2_nim/private/stdinc.nim#L87. This should be behind a flag or removed in my...