Odin icon indicating copy to clipboard operation
Odin copied to clipboard

Odin Programming Language

Results 744 Odin issues
Sort by recently updated
recently updated
newest added

This makes microui textboxes a bit nicer to use, adding selection manipulation and cut/copy/paste using the text_edit helpers. I've left out undo/redo since it would introduce allocation, but let me...

## Context Odin: dev-2024-05:856537f0c OS: Windows 10 Professional (version: 22H2), build 19045.4291 CPU: Intel(R) Core(TM) i7-4771 CPU @ 3.50GHz RAM: 16311 MiB Backend: LLVM 17.0.1 ## Expected Behavior No compiler...

stale

## Context Repro case: ```odin package main main :: proc() { foo: Maybe(matrix[4,4]f32) } ``` Triggers assert `src/types.cpp(1488): Assertion Failure: 'min_alignment >= elem_align'` at https://github.com/odin-lang/Odin/blob/master/src/types.cpp#L1488 `odin report`: ```shell Odin: dev-2024-05:4d8cd9b31...

## Problem `./build_odin.sh` succeeds on dev-2024-04a and prints the demo. `./build_odin.sh` fails on dev-2024-05 with the following output: ```bash ~/Documents/odin $ ./build_odin.sh + /usr/lib/llvm17/bin/clang++ src/main.cpp src/libtommath.cpp -Wno-switch -Wno-macro-redefined -Wno-unused-value '-DODIN_VERSION_RAW="dev-2024-05"'...

## Context Please provide any relevant information about your setup. This is important in case the issue is not reproducible except for under certain conditions. * Operating System & Odin...

stale

Support for loading Windows + OS/2 BMP files. - 1, 2, 4, 8, 16, 24 and 32 bpp - Uncompressed, RLE4, RLE8 and Bit Field compression modes Handles V3, V4,...

After #3566, dynamically setting width in the following way stopped working: ```odin fmt.printf( "[% -[1]*v][% -[3]*v][% -[5]*v][% -[7]*v][% -[9]*v]\n", 6, "First", 30, "Second", 10, "Third", 20, "Fourth", 20, "Fifth", )...

## Context For some reason, occasionally the `using` statement or parameter attribute does not import members correctly. Odin: dev-2024-05-nightly:2250eb3e7 OS: Ubuntu 22.04.4 LTS, Linux 6.5.0-28-generic CPU: 12th Gen Intel(R) Core(TM)...

stale

I'm not quite sure if this should be a bug report or feature request. ## Context Odin: dev-2024-01-nightly:5961d4b3 OS: Windows 10 Enterprise N (version: 20H2), build 19042.1466 CPU: Intel(R) Core(TM)...

stale

Some basic bindings to glfw native linux platform functions, I used rawptr to represent the wayland handles since there isn't a vendor library for wayland currently (that I could see)....