wqthenb
wqthenb
I'm having a trouble integrating sonyflake into my project. sonyflake only generates int64. unfortunately int64 is not officially supported by javascript or lua. there will be a precision lost. If...
The following test case will fail. Seems there's no way to keep an entry alive. IMO, `Peek` retrieves data without updating its TTL, but `Get` does. So if we keep...
run into a memleak issue with expirable LRU. here's the scenario: there's a chance that `Get()` returns nothing, but `Contains()` return true, which means the entry has expired, ready for...
Im using mginw32, having these sdl libs installed: ``` mingw-w64-ucrt-x86_64-SDL2 2.30.10-1 mingw-w64-ucrt-x86_64-SDL2_gfx 1.0.4-2 mingw-w64-ucrt-x86_64-SDL2_image 2.8.2-3 mingw-w64-ucrt-x86_64-SDL2_mixer 2.8.0-2 mingw-w64-ucrt-x86_64-SDL2_ttf 2.22.0-1 ``` got errors as below. it looks like cimgui-go was linking...
### Related problem _No response_ ### Your request I know that giu can work with sdl2 backend, but it goes with sdl2 cgo, right? Is it possible to integrate giu...
Go version: 1.24.3 Go-SDL2 version: go-sdl@master SDL2 version: go-sdl@master OS: macos 15.1.1 Architecture: arm64 I'm actually using clang. not sure if the gnu gcc is mandatory for static linking. it...
I'm using sdl_ttf in a go binding lib, here's the binding src: TTF_RenderUTF8_Solid: https://github.com/veandco/go-sdl2/blob/4dff63cf3caad3d340b13c6663cd4219a034463f/ttf/sdl_ttf.go#L289 TTF_RenderUTF8_Blended_Wrapped: https://github.com/veandco/go-sdl2/blob/4dff63cf3caad3d340b13c6663cd4219a034463f/ttf/sdl_ttf.go#L327 when using TTF_RenderUTF8_Blended_Wrapped , my program has a very high chance that crashes with...
https://github.com/Suprcode/Crystal/blob/c94eda0d2c10f4e64d35d4050ba4ee8ade0b4178/Server/MirObjects/MonsterObject.cs#L1308-L1309 got confused here. since it's updating Object's OperateTime, why the 2 `if` statements necessary? plz correct me if I'm wrong: - `OperateTime Envir.Time`), and we want to increase the...