From e423a6d692613cd15aad8d9db4c61b452c61753f Mon Sep 17 00:00:00 2001 From: gingerBill Date: Wed, 28 Feb 2024 18:25:29 +0000 Subject: [PATCH] Make types `distinct` --- vendor/egl/egl.odin | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vendor/egl/egl.odin b/vendor/egl/egl.odin index cf6a02b7a..3174fa60b 100644 --- a/vendor/egl/egl.odin +++ b/vendor/egl/egl.odin @@ -1,12 +1,12 @@ //+build linux package egl -NativeDisplayType :: rawptr -NativeWindowType :: rawptr -Display :: rawptr -Surface :: rawptr -Config :: rawptr -Context :: rawptr +NativeDisplayType :: distinct rawptr +NativeWindowType :: distinct rawptr +Display :: distinct rawptr +Surface :: distinct rawptr +Config :: distinct rawptr +Context :: distinct rawptr NO_DISPLAY :: Display(uintptr(0)) NO_CONTEXT :: Context(uintptr(0))