Vault Thirteen

Results 27 comments of Vault Thirteen

Me thinks that your approach is not quite good. Go programming language is still very young and amateur. Golang, after being in development for more than 10 years, still lacks...

[2021-03-01] > Thank you for opening an issue. We will get back to you as soon as we can. [2021-06-11] > This issue has been automatically marked as stale because...

Well, it looks like this repository received updates 8 years ago, so I consider it to be abandoned. The Arma III game itself is also not really updated by its...

Hello, Osamu. I see activity in your repositories, but for some reason you are not responding. Are you supporting your libraries ?

A month has passed since my first message.

``` // Uint32 return uint32 representation of RGBA color. func (c Color) Uint32() uint32 { var v uint32 v |= uint32(c.R)

I have opened the source code of SDL, and it looks like they are using an RGBA channel sequence. /** * The bits of this structure can be directly reinterpreted...

```int SDL_FillRect (SDL_Surface * dst, const SDL_Rect * rect, Uint32 color);``` `Uint32` here is a pixel, this a typo in their docs ! Documentation of SDL says that `color` argument...

https://wiki.libsdl.org/SDL2/SDL_GetRGBA SDL_GetRGBA ``` void SDL_GetRGBA(Uint32 pixel, const SDL_PixelFormat * format, Uint8 * r, Uint8 * g, Uint8 * b, Uint8 * a); ``` Looks like `Uint32` is a pixel, not...