LearnOpenGL VS CppCoreGuidelines

Compare LearnOpenGL vs CppCoreGuidelines and see what are their differences.

LearnOpenGL

Code repository of all OpenGL chapters from the book and its accompanying website https://learnopengl.com (by JoeyDeVries)

CppCoreGuidelines

The C++ Core Guidelines are a set of tried-and-true guidelines, rules, and best practices about coding in C++ (by isocpp)
JetBrains - Tell us how you use coding tools. You may win a prize!
Are you a developer or a data analyst? Share your thoughts about your coding tools in our short survey and get a chance to win prizes!
surveys.jetbrains.com
featured
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
LearnOpenGL CppCoreGuidelines
636 321
11,823 44,128
0.2% 0.3%
3.8 6.8
about 1 year ago about 1 month ago
C++ CSS
GNU General Public License v3.0 or later GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

LearnOpenGL

Posts with mentions or reviews of LearnOpenGL. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-07-27.
  • Ask HN: What Are You Working On? (July 2025)
    84 projects | news.ycombinator.com | 27 Jul 2025
    Learning OpenGL. https://gamemath.com/ is free and a great way of explaining most of the math in an intuitive way without getting handwavy or imprecise. https://learnopengl.com/ is also free!
  • Cloth
    6 projects | news.ycombinator.com | 26 Apr 2025
    At the end of the day, it's all just maths and physics.

    You didn't specifically ask about game development, but that domain is where the majority of graphics, mathematics, lighting, physics, etc, knowledge is distributed. And it can be difficult to find information solely about (e.g.) cloth simulation and other niche topics without it being coupled into game development resources.

    I happened to read https://alextardif.com/LearningGraphics.html today, which might give you some pointers in various directions. https://learnopengl.com/ gets a consistently good rap, even today when there are newer APIs like Vulkan and Metal. Consider the API as 5% of the problem to solve though (less tbh, though Vulkan is proving even heavier than I was warned).

    If you don't want to learn C/C++, I understand there's a large community around WebGL, so finding their subreddits and other forums could be a good starting point too.

    However, again, the API and platform is really just a wrapper around the actual physics simulation (the impressive part).

  • A-Share Market Surge - FAV0 Weekly #016
    7 projects | dev.to | 29 Sep 2024
    Learn OpenGL - A free OpenGL tutorial suitable for learners looking to deepen their understanding of graphics APIs, visit http://learnopengl.com.
  • Ask HN: Resources for Learning Graphics Programming
    9 projects | news.ycombinator.com | 24 Sep 2024
    Me and a friend build our own Graphics engines based on https://learnopengl.com I can highly recommend this to everyone who gets started with computer graphics. It is a lot of new information but not the most modern Graphics library, but the information will help you understand the field and pickup any other graphics library quicker. Once I had a small project up and running I started looking at https://emscripten.org/ to combine it with some web experiments and more easily share my work with other over the web. I also started looking at https://vulkan-tutorial.com/ and https://webgpufundamentals.org/ to experiment with geometry shaders.

    Next to Realtime Graphics you could also dabble into the world of Ray-Tracing. Personally I'm still quite new to this field but my master thesis supervisor also gave lectures at an other university where they recoded a lot of lectures during Covid. Advanced Computer graphics at the UU for example https://ics-websites.science.uu.nl/docs/vakken/magr/2021-202... The course recommends https://raytracing.github.io/ as a resource to students, and I can also recommend this.

    As a small note to end with, the website(s) of professors giving computer graphics are a true tressure trove of information: https://jacco.ompf2.com/ https://www.3dgep.com/cpp-fast-track-1-getting-started/

  • LÖVR – An open source framework for rapidly building immersive 3D experiences
    6 projects | news.ycombinator.com | 4 Sep 2024
    Somewhat related, I'm trying to convert the Learn OpenGL tutorials [0] to LÖVR [1]. The main goal is to understand the changes needed to convert the Open GL shaders to the LÖVR version, as there are some changes.

    ---

    [0]: https://learnopengl.com/

    [1]: https://github.com/wolf81/lovr-learnopengl

  • Learn OpenGL: extensive tutorial resource for learning Modern OpenGL
    1 project | news.ycombinator.com | 26 Aug 2024
  • The Game for my Daughter
    8 projects | dev.to | 19 Jul 2024
    Wvhile browsing over the net, one website stands out learnopengl.com. It looks very well-structured, have covered a variety of different topics and have links to the source code. And that is not only about the code, but building an important understanding what is going on behind those lines. I'm pretty sure I will go over the articles over and over again to refresh certain aspects when I actually need them.
  • Learn OpenGL, extensive tutorial resource for learning Modern OpenGL
    1 project | news.ycombinator.com | 7 Jun 2024
  • Learn OpenGL eBook
    1 project | news.ycombinator.com | 20 Feb 2024
  • LearnD3D11, a guide aimed at anyone trying to learn Direct3D11
    2 projects | news.ycombinator.com | 5 Feb 2024
    Also recommended: LearnOpenGL [1] and Vulkan Guide [2]

    [1]: https://learnopengl.com/

CppCoreGuidelines

Posts with mentions or reviews of CppCoreGuidelines. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-03-30.
  • Essential White Papers for Senior Software Engineers: Advanced Reading for Technical Leadership
    2 projects | dev.to | 30 Mar 2025
    "C++ Core Guidelines" by Bjarne Stroustrup and Herb Sutter Read the guidelines
  • Distributed Systems Programming Has Stalled
    3 projects | news.ycombinator.com | 27 Feb 2025
    I've found both explicit future/promise management and coroutines difficult (even irritating) to reason about. Co-routines look simpler at the surface (than explicit future chaining), and so their the syntax is less atrocious, but there are nasty traps. For example:

    https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines...

  • A Tail Calling Interpreter for Python
    1 project | news.ycombinator.com | 20 Feb 2025
    I liked "Effective Modern C++" although that is a little bit out of date by now. Stroustrup's recent article "21st century C++" https://cacm.acm.org/blogcacm/21st-century-c/ . There are also the C++ core guidelines though maybe those are also out of date? https://github.com/isocpp/CppCoreGuidelines

    I've been looking at Rust and it's an improvement over C, but it still strikes me as a work in progress, and its attitude is less paranoid than that of Ada. I'd at least like to see options to crank up the paranoia level. Maybe Ada itself will keep adapting too. Ada is clunky, but it is way more mature than Rust.

  • 21st Century C++
    3 projects | news.ycombinator.com | 5 Feb 2025
    I haven't read much from Bjarne but this is refreshingly self-aware and paints a hopeful path to standardize around "the good parts" of C++.

    As a C++ newbie I just don't understand the recommended path I'm supposed to follow, though. It seems to be a mix of "a book of guidelines" and "a package that shows you how you should be using those guidelines via implementation of their principles".

    After some digging it looks like the guidebook is the "C++ Core Guidelines":

    https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines

    And that I should read it and then:

    > use parts of the standard library and add a tiny library to make use of the guidelines convenient and efficient (the Guidelines Support Library, GSL).

    Which seems to be this (at least Microsoft's implementation):

    https://github.com/microsoft/GSL

    And I'm left wondering, is this just how C++ is? Can't the language provide tooling for me to better adhere to its guidelines, bake in "blessed" features and deprecate what Bjarne calls, "the use of low-level, inefficient, and error-prone features"?

  • Ray Tracing in One Weekend
    6 projects | news.ycombinator.com | 2 Jan 2025
    See this: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines...

    Technically, headers are just copy-paste, obviously. However, there's value to keeping them as standalone as possible.

  • Rust in QEMU Roadmap
    5 projects | news.ycombinator.com | 3 Dec 2024
  • Don't defer Close() on writable files
    7 projects | news.ycombinator.com | 8 Sep 2024
    > close a file (which ironically is the poster child for RAII)

    Yes, I call this "RAII is a lie" (T-shirt pending).

    Closing file descriptors is univerally used to showcase RAII, but it should never be used for that.

    C++ has the same problem:

    https://github.com/isocpp/CppCoreGuidelines/issues/2203

    In there, it is acknowledged that a manual Close() should always be provided, and used if you want guarantees.

    > is a bad pattern

    Good that Rust at least figured it out early that it's a bad pattern!

    Never use RAII in situations where the cleanup can fail!

  • CppCoreGuidelines: Essential Rules and Best Practices for C++ Developers
    1 project | news.ycombinator.com | 15 Aug 2024
  • What to do if you don't want a default constructor?
    1 project | news.ycombinator.com | 20 Jul 2024
    The standard library types are guaranteed to be in a useful state after being moved from (the term "valid state" is used for this). Of course, that doesn't mean that your own types have to, but the C++ Core Guidelines suggest doing so [1].

    1: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines...

  • I Have No Constructor, and I Must Initialize
    4 projects | news.ycombinator.com | 5 Jul 2024
    It’s in the cpp core guidelines: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines...

    std::reference_wrapper still can’t save you from yourself, but its slightly better.

What are some alternatives?

When comparing LearnOpenGL and CppCoreGuidelines you can also consider the following projects:

imgui - Dear ImGui: Bloat-free Graphical User interface for C++ with minimal dependencies

github-cheat-sheet - A list of cool features of Git and GitHub.

sokol - minimal cross-platform standalone C headers

learnxinyminutes-docs - Code documentation written as code! How novel and totally my idea!

raylib - A simple and easy-to-use library to enjoy videogames programming

dmd - dmd D Programming Language compiler

JetBrains - Tell us how you use coding tools. You may win a prize!
Are you a developer or a data analyst? Share your thoughts about your coding tools in our short survey and get a chance to win prizes!
surveys.jetbrains.com
featured
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured

Did you know that C++ is
the 7th most popular programming language
based on number of references?