Top products from r/opengl

We found 34 product mentions on r/opengl. We ranked the 31 resulting products by number of redditors who mentioned them. Here are the top 20.

Next page

Top comments that mention products on r/opengl:

u/gavinb · 1 pointr/opengl

Well if you want to be the next Carmack, get cracking! :) You have a lot of ground to cover, such as: mathematics (matrices, linear algebra, etc), physics, artificial intelligence, real-time processing, multithreading, architecture, networking and protocols, rendering, sound, and much more!

It is certainly possible with enough time and dedication to develop your own engine. It's just that there are so many excellent engines already out there, that you would be competing with projects that have already invested many thousands of hours and have loads of titles already developed for them. Why not get involved with an existing project to start?

BTW I really like your idea of creating a FPS with one room and focusing on making that environment the richest possible, exploiting a wide variety of techniques. Do it!!

Is your ultimate goal to create an engine? Or to create a game? Remember, the engine is in many ways a means to an end - it's not much use without a game that uses it!

Either way, I think you would be well advised to get involved with one of the open source game engine projects, and start contributing. Once you've learned how they work, you will be in a much better position to design your own. And realistically, you can't really just design an engine without a game - you need to know how games work in the first place, and what features and architectural decisions and designs make for a good engine.

Consider joining:

u/JoeyDeVries · 3 pointsr/opengl

I'm working on a large OpenGL tutorial site that is specifically aimed at beginners trying to learn modern OpenGL with clear samples and easy-to-understand sections. It's not finished yet but should provide a good resource for getting started and getting a hang of shaders. Take a look at www.learnopengl.com and see if it's something that suits your needs :)

Also, take a look at:
Real-Time Rendering: great book on modern OpenGL with a focus on shaders (although not specifically aimed at complete beginners).
Open.gl: good resource for starting modern OpenGL. Easy-to-understand.
Arcsynthesis tuts: very extensive OpenGL tutorial that goes into much more detail, making it more rewarding, but also more complicated for beginners.

u/Madsy9 · 1 pointr/opengl

You didn't post a question, so it's difficult to know what exactly you want. If you just need to implement space partitioning with a BSP tree, read the good old BSP FAQ

If you need more general graphics background, check out:

  • Websites like Flipcode and GameDev.net

  • Buy some books. GraphicsGems and Michael Abrash's Graphics Programming Black Book are maybe old, and the code examples are certainly outdated (They are from the old MS-DOS mode 13h VGA days), but they are excellent in teaching you the fundamentals of computer graphics theory that never gets old. Like how polygon rasterizers work, space partitioning, polygon clipping, etc. When you want to learn more about more advanced effects, look into the Real-Time Rendering series. For a slightly more updated book on the same topic, check out 3D Math Primer for Graphics and Game Development, but I think it's a bit thin for the price (I have the 1st edition myself).

  • Forums with people who actually specializes in computer graphics, like Ompf2 and DevMaster

    If you have more questions, please be more specific. I might help you with more resources.
u/capnramses · 2 pointsr/opengl

part of being a scientist is reviewing a wide range of references - you might be expecting a bit much from one online source. let me suggest this one and this one, and especially this one are going to have the general graphics pipeline explanation chapters that you're looking for. if $$$ is a problem (and it is for most of us with these texts), perhaps you can insist that your local library gets them?
you can also pick up some good ideas by visiting course pages for some of the more well-known university graphics programmes - some of them have slides online, otherwise check out their reading lists - these guys are the best in the world at teaching graphics. read what they read.

http://www.cs.cornell.edu/Courses/cs465/2007fa/
http://graphics.stanford.edu/courses/
http://www.cs.utah.edu/research/areas/graphics/
http://www.cis.upenn.edu/~badler/courses/cis560.html

but i suspect, your best bet for this sort of stuff is actually Eric Haines' online course, which has a free version. it uses webgl but the main concepts are exactly the same as desktop gl and it's really very good https://www.udacity.com/course/cs291

also, interesting side note - Myers-Briggs has been widely discredited. it's actually based on Jung's germanic mysticism, which comes from ancient European magic. earth/air/wind/fire, alchemy, the four humours, the four personality components etc. etc. not a drop of science in it, but employers insist on you doing it.

u/TurkishSquirrel · 1 pointr/opengl

It sounds like you want something that focuses more on rendering theory/math instead of a lesson on how to use OpenGL to implement the theory. My favorite theory book is Real Time Rendering which covers a ton of stuff from matrices/vectors through to texturing, global illumination and more. To familiarize yourself with the OpenGL API I'd recommend the Red book. The 8th edition covers OpenGL 4.3 which adds some cool new stuff like compute shaders.

>Create a 3D scene with a heightmap-based terrain and some blocks. I'd also like to have lighting and some shadows. Maybe even create a simple editor to create nice scenes in.

This will probably take you a while to get running. Start simple so you don't get overwhelmed.

u/TheRandomDot · 3 pointsr/opengl

I'm learning OpenGL as you, and I took a parallel approach. On first thread I'm doing rapid coding by hit and trial, building things out of a simple hello world kind of programs.

While on the second thread, I'm getting the basics of Computer Graphics clearer everyday by reading some excellent things, like I've Interactive Computer Graphics: Top Down Approach by my bedside and articles referred above stack up on my bookmark.

And this approach is very helpful, because on the first hand I'm building something amazing everyday, and on the other I'm learning how that thing actually works on the inside.

u/[deleted] · 3 pointsr/opengl

Im in the same boat as you but I have paddled for sometime, here is the books that are awesome to work with:

  1. Interactive Computer Graphics: A Top-Down Approach with Shader-Based OpenGL (6th Edition).

    2)3D Math Primer For Graphics And Game Development

    3)Fundamentals of Computer Graphics

    these 3 books will come very handy when you start computer graphics...the main one is the Interactive Computer Graphics book, written by Edward Angel, Dave Shreiner, Dave Shreiner is an awesome guy and he is also one of the authors of OpenGL programming guide.

    with that being said these books dont teach OpenGL, they teach Graphics, and all these books are advance, because let's face it 3D & graphics in general are hard topics..

    Interactive Computer Graphics takes a nice approach to both the math and the concepts, it also introduces the basics of modern OpenGL using shaders, the problem about it for me is its a bit hard to get the math, because it assumes that you got linear algebra down but it has some appendices with it that explain some math but nowhere near enough.

    The other two books unfortunately I havent been able to get into but they are very recommended by people around the web.

    So if you can read all three at the same time...they will help in every way.

    if you need more help or want to know how far I have come, then by all means shoot me a PM..or I will shoot you one.
u/whackylabs · 3 pointsr/opengl

The best way is to understand the graphics pipeline, what all stages are there, how your geometry data flows through the pipeline and what fixed pipeline does for you. Then you will start appreciating the programmable pipeline more.

If you're serious about understanding the core of Computer Graphics, get Real Time Rendering.

You can read first few pages for free at Amazon where they give a good introduction to the graphics pipeline.

u/myevillaugh · 7 pointsr/opengl

I suggest disconnecting the two. You need to have a firm grasp on C or C++ programming before going into graphics. It's a long road, but worth it.

This book is considered the authoritative source on C programming, written by the creator: http://www.amazon.com/C-Programming-Language-2nd-Edition/dp/0131103628

Here are some text based tutorials that I used to learn OpenGL recently.

http://openglbook.com/the-book/

http://www.swiftless.com/tutorials/opengl4/1-opengl-window.html

http://en.wikibooks.org/wiki/OpenGL_Programming

Good luck!

u/othellothewise · 3 pointsr/opengl

I would recommend Mathematics for 3D Game Programming and Computer Graphics. It has all the derivations plus covers a whole lot of other useful topics. It's well worth the $45.

Another approach is to go through the math manually, by taking points and projecting them and trying to understand the behavior.

u/mispeeled · 2 pointsr/opengl

Besides the other suggestions in this thread I'd also recommend the OpenGL Superbible.

Even though it's OpenGL 4.3 and c++, it's still an excellent place to start

u/Maeln · 3 pointsr/opengl

The 4th edition only talk about OpenGL 2.1, if you want to learn modern OpenGL ( 3.x ) buy the 5th edition ( http://www.amazon.com/OpenGL-SuperBible-Comprehensive-Tutorial-Reference/dp/0321712617/ref=sr_1_2?s=books&ie=UTF8&qid=1319548380&sr=1-2 ), but it's only about OpenGL 3.3, not 4.x.

The link alexincode gave you is very good even if it's for OpenGL 3.3 too. But, the author seems to keep updating the tutorial, so it's possible to see an update for OpenGL 4.x.

u/BaconWraith · 6 pointsr/opengl

If you don't mind reading or shelling out a bit of money, Game Engine Architecture is still a great resource

u/whisky_pete · 7 pointsr/opengl

May I suggest:

http://ogldev.atspace.co.uk/

supplemented by:
https://open.gl/
http://learnopengl.com/

I'm going through the first tutorial now after prior experience building an instance rendering system for 2d sprites. So, I've had some basic interaction with the API and know some of the linear algebra basics (vectors, matrix transforms, dot product & cross product). The ogldev tutorial is pretty comprehensive in a way that many tutorials are not, so I'd suggest starting there and using the other two sites as a reference. I believe the ogldev author maintains a Visual Studio project for building their examples, but I haven't used it as I'm developing on linux.

Be patient and try to really read through the examples. OpenGL isn't the simplest API, and 3D graphics are a totally different way of thinking if you haven't done that type of development before. I'd avoid trying to copy-paste solutions and learn that way, because you won't end up with a deep understanding that you really need. This comes from an aspiring graphics developer who is looking to get into the industry, so take what I said with a grain of salt as well.

EDIT:

And, if you're really serious and want to look into picking up books, I can suggest these:
Real-Time Rendering, 3rd Edition

3D Math Primer for Graphics and Game Development

OpenGL Programming Guide: The Official Guide to Learning OpenGL, Version 4.3 (8th Edition) if you need an api reference. Additionally, for a short-hand api reference thats useable, try docs.gl

u/malexw · 2 pointsr/opengl

I've never seen a beginner's book on OpenGL that I really liked. I started with the classic NeHe tutorials, but I would never recommend them these days because they're based on the old, deprecated APIs, which aren't available in OpenGL ES, WebGL, or the strict versions of OpenGL 3.0+.

For modern OpenGL, my favourite set of tutorials for now is here: http://arcsynthesis.org/gltut/

But if you're extremely new to graphical programming, you'll probably want a solid introduction to the parts of linear algebra that are used in graphics programming. I got that from the 2nd edition of the classic text, Computer Graphics: Principles and Practice, though I think it's a fairly dry approach to the subject.

u/miketuritzin · 2 pointsr/opengl

This is surprisingly tricky to get right. I used the "polyboards" technique described in chapter 9 of this book, and it works well: https://www.amazon.com/Mathematics-Programming-Computer-Graphics-Third/dp/1435458869

u/michad24 · 2 pointsr/opengl

Almost all of what I know I learned from this book. When I was learning ES 2.0 there was pretty much no reference material on the subject as nobody used it.

Shaders are pretty simple, however they're a pain in the ass as you have to do everything yourself, which is both an advantage and disadvantage.