ftphikari

Results 23 issues of ftphikari

Freetype supports COLR/CPAL/SVG (vector based) as well as CBDT/CBLC (bitmap based png's) fonts. However I cannot find a function in SDL_ttf API that can tell me if the font is...

Good and simple feature to add would be the ability to save the file with sudo, if it fails otherwise. `sudo_cmd` could be used to specify whether to save using...

Line 17 of `go_completer.moon` checks for `$GOPATH/bin/gocode`, however it is possible to have `gocode` be in `$GOBIN`, or really anywhere else on the system. `go_fmt_command` works fine no matter where...

This thing shouldn't compile: ```odin Message :: struct { id: int, type: union { Resize_Message, }, } // depending if `type: int` is declared before or after `message`, you get...

```odin package bug2 import win32 "core:sys/windows" backbuffer: win32.BITMAPINFO main :: proc() { backbuffer.bmiHeader.biSize = size_of(win32.BITMAPINFO.bmiHeader) } ``` Compiler error: ``` 'win32.BITMAPINFO' of type 'BITMAPINFO' has no field 'bmiHeader' Suggestion: Did...

```odin package bug4 main :: proc() { possibilities: bit_set[1..=9; u8] } ``` Compilation error: ``` bit_set range is greater than 8 bits, 10 bits are required (internal the lower changed...

stale

Not sure how to name this bug. ```odin package bug3 Cell :: struct { original: bool, } Board :: #soa[81]Cell init_board :: proc(board: ^Board) { for cell in board {...

stale

```odin package bug import "core:os" main :: proc() { buf := make([]byte, 16) n, err := os.read(os.stdin, buf[:]) } ``` 1. Input 14 characters 2. Press enter Expected result: os.read...

# Discussion [discussions/1390](https://github.com/odin-lang/Odin/discussions/1390) # Proposal ``` #override_foreign_library "system:somelib" "myownlib.a" ```

feature request
proposal
stale

## Report Odin: dev-2022-05:f27f5955 OS: Windows 10 Unknown Edition (0000007d) (version: 21H2), build 19044.1645 CPU: Intel(R) Core(TM)2 Duo CPU P8600 @ 2.40GHz RAM: 8086 MiB ## Code ```odin package bug8...