Authentication-Results: mail-b.sr.ht; dkim=none Received: from mail.nullprogram.com (mail.nullprogram.com [192.241.191.137]) by mail-b.sr.ht (Postfix) with ESMTPS id 5934111EF5B for <~skeeto/public-inbox@lists.sr.ht>; Tue, 24 Jan 2023 05:14:38 +0000 (UTC) Received: from nullprogram.com (localhost [127.0.0.1]) by mail.nullprogram.com (Postfix) with ESMTPS id D9FEFC8306; Tue, 24 Jan 2023 00:14:37 -0500 (EST) Date: Tue, 24 Jan 2023 00:14:36 -0500 From: Christopher Wellons To: biker95 Cc: ~skeeto/public-inbox@lists.sr.ht Subject: Re: SDL Questions and suggestions Message-ID: <20230124051436.bsdcgo5n5h74a74n@nullprogram.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20170113 (1.7.2) Thanks for the kind words, biker95! Sometimes I have considered making videos in addition to writing on a topic, since some concepts are just better when seen in action. I just never take the time to sort out the details. > I hope they fix the Wiki for SDL3 Since it's a wiki and an open source project, is that also not in your hands as well? :-) > a little question about the #include "SDL.h" part I couldn't find a hard answer about this, and the best source I have is an SDL maintainer discussing it briefly (the video series I linked in my SDL2 article). Brackets vs. quotes is mainly convention as far as C compilers are concerned, and quotes communicates that you're picking up an SDL.h not necessarily installed on the system, but found through compiler flags. If you have a custom SDL2 in, say, your home directory, and you call its sdl2-config when you compile, the header is "local" in a sense.