aboutsummaryrefslogtreecommitdiff
path: root/core/sys/windows
diff options
context:
space:
mode:
authorjakubtomsu <66876057+jakubtomsu@users.noreply.github.com>2026-02-09 20:08:22 +0100
committerjakubtomsu <66876057+jakubtomsu@users.noreply.github.com>2026-02-09 20:08:22 +0100
commitd492122bd4d35c763cdf475e158754895f411be0 (patch)
treec4f6494753978c5fd17c574dd4ecee583d9bc01a /core/sys/windows
parent8018604f8309e6af95ffa3886f9a0768bd720834 (diff)
import cleanup
Diffstat (limited to 'core/sys/windows')
-rw-r--r--core/sys/windows/gdi32.odin4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/sys/windows/gdi32.odin b/core/sys/windows/gdi32.odin
index ad2243b56..e607aafcc 100644
--- a/core/sys/windows/gdi32.odin
+++ b/core/sys/windows/gdi32.odin
@@ -1,8 +1,6 @@
#+build windows
package sys_windows
-import "core:math/fixed"
-
foreign import gdi32 "system:Gdi32.lib"
@(default_calling_convention="system")
@@ -100,7 +98,7 @@ PALETTEINDEX :: #force_inline proc "contextless" (#any_int i: int) -> COLORREF {
return COLORREF(DWORD(0x01000000) | DWORD(WORD(i)))
}
-FXPT2DOT30 :: distinct fixed.Fixed(i32, 30)
+FXPT2DOT30 :: distinct i32 // fixed.Fixed(i32, 30)
CIEXYZ :: struct {
ciexyzX, ciexyzY, ciexyzZ: FXPT2DOT30,