Hello. This is the best explanation of basic OpenGL I've ever seen. This guy is very skilled in his explanation. To the point and very informative.
@Anothergames11 жыл бұрын
No matter what others say, this is clearly the best OpenGL tutorial I have ever seen for 3 years around.
@anonamemous68653 жыл бұрын
And it is 11 years ago.... It's still the best till now
@varionmori7094 жыл бұрын
Thank you so very much! It's hard to find a quick run thru on beginner knowledge of OpenGL ES and this is very helpful! And to answer that question of the coordinate plane being resized, all values in OpenGL are percentages! From the the colors 0.0f-1.0f to the coordinate plane -1.0 to 1.0
@jarar1986197 жыл бұрын
Cool video! It's important to get that this video is based on OpenGL ES 1.1 that is really old. OpenGL ES 3.0is the current version.
@thuannguyen-thai480312 жыл бұрын
Thank so much Mr. David Jacobs. It is wonderful.
@chenandy571411 жыл бұрын
the basic concepts are very useful for further study ,and you describe them very clear ,so thanks
@Lagonz200012 жыл бұрын
David Jacobs for PRESIDENT!
@walter0bz12 жыл бұрын
state based APIs... people coming from functional languages must love it :)
@kelekokerupuk12 жыл бұрын
Your Video Is Very Useful Sharing David Jacobs provides and introduction to OpenGL ES. Coordinate systems and tranformations, drawing geometry, textures, and other details.
@KyleLuce12 жыл бұрын
Yes yes, no GLUT or GLU on OpenGLES supported platforms (IOS, Android). But don't ignore those tutorials! Just use the concepts. Also, you can ifdef the context setup and main loop which makes a call to portable code that runs on all the systems you're targeting. E.g. I do SDL for my PC rendering setup and all the actual drawing and game logic is in platform agnostic opengl. Same code runs on PC, Android and any posix system.
@宋佳强-q8y8 жыл бұрын
How to understand the parameters of glFrustumf(left, right, top, bottom, near, far) ?
@RandyFortier7 жыл бұрын
18:30
@mayuranarudsothy534412 жыл бұрын
excellent lecture, i expect more lectures from you regarding opengl ;)
@AndrewKharchyshyn11 жыл бұрын
Look on the date, its March 9, 2010. OpenGL ES 2.0 wasn't yet announced, and in 1.1 version u are not using shaders.
@白天杰-d6d3 жыл бұрын
cool video
@KyleLuce12 жыл бұрын
I do not understand your response. I am using SDL for that, not GLUT, as I have stated. I was stating not to ignore tutorials with sound graphics principles, simply because they are using GLUT. Ignore GLUT and garner the generic concepts, it's simple. I use more standard OpenGL calls which happen to be a subset of OpenGL ES. Therefore my code compiles on all posix platforms. The rendering logic I use for setting up context is SDL. This way there is one code base for the entire game.
@TheRadioMu10 жыл бұрын
10:50 you know that objects reduce size with greater distance, why is the view frustum growing greater with disrance : )
@mistereftup56299 жыл бұрын
+TheRadioMu to avoid the deep screen appearing to narrow, when it doesn't
@NeilRoy9 жыл бұрын
+TheRadioMu Okay, sit still in your room, and look straight ahead at a wall. How much of that wall do you see? Take note of the minimum and maximum area of the wall you see. Quite a bit of it if you are sitting far away. The farther away the wall is, the more of it you see. Now look at that Frustum again, the farther away the zFar wall is, the larger it is, because you're seeing more as the distance increases. This is also why, if you play a video game and you adjust the distance you can see away in your quality settings, for each little bit of distance you see further, the amount that needs to be rendered increases exponentially because father away = much more area you are seeing at that distance. If you point towards each corner of the limit of you can currently see, do you point straight ahead, inward, or do you point point out at an angle that grows larger?
@KyleLuce12 жыл бұрын
No problem my friend. Best of luck on your graphics programs/games! :)
@EddieKMusic12 жыл бұрын
Many people say that it's syntax sucks. Not just me. It's very counter intuitive and hard to read.
@TheRadioMu10 жыл бұрын
this lecture would be awesome if he described the math behind the model-view-projection multiplication. that was my basic struggle. without understand the model-view-projection process then you are just guessing
@mistereftup56299 жыл бұрын
+TheRadioMu linear algebra is it's own 60,000 videos
@moofymoo11 жыл бұрын
this is great, answers lot of 'why' questions.
@denisblack98977 жыл бұрын
same here, i get it's not that hard! but WHY THE F should i learn this crap, when i have SceneKit and Unity... this lecture helps to clear that mental block
@TheRadioMu12 жыл бұрын
finally i get it. this guy rocks. i feel sorry for those students though, opengl in one day sucks
@fudgepacker32113 жыл бұрын
this is awesome, thank you
@as12df1210 жыл бұрын
Why do all universities teach OpenGL with a right-handed coordinate system? The negative-z into the screen was in no way enforced in any OpenGL since 1.0, and it most certainly isn't now with the state machine and matrix stacks abolished. Just because that's what SGI used back then? Is there a certain mathematical or otherwise academical reason for insisting on a right-handed coordinate system?
@dk0r5110 жыл бұрын
Perhaps because right handed systems are defined conventions throughout mathematics, physics, engineering, etc..
@NeilRoy9 жыл бұрын
+as12df12 He stated in the video that it was just a construct, not fixed, it depends on the user at around 10:45, but he has to use some system when teaching and the best one to use is the most common one and the one OpenGL defaults to in order to avoid confusion.
@dk0r519 жыл бұрын
***** I agree with you completely --the best convention to use is the one which is actually a convention..
@as12df129 жыл бұрын
***** Whoa, I actually missed that, thanks. Anthony Phillips Well, left-handed is a convention with game developers... but I see the point.
@dk0r519 жыл бұрын
+as12df12 Thanks for the info but I find this difficult to believe. Take care.
@grunder2013 жыл бұрын
Future of Technology.
@sambisambi201012 жыл бұрын
openGL is openGL ,but just there is little difference in input and some function (for example there is no mouse in android ) :D
@nabilulhaq57334 ай бұрын
yogya present
@KyleLuce12 жыл бұрын
The video mentioned that "90% of tutorials online were not helpful" due to using GLUT. This is nonsense. Many of them use generic graphics principles and are quite useful, just ignore the GLUT components. That was my point of mentioning GLUT. I am not using it, but it is silly to dismiss 90% of tutorials based on this. Also, the rendering logic remains the same or similar (unless you are using immediate mode for vertices etc), which is really slow anyway, so avoid it.
@denisblack98977 жыл бұрын
omg this is so helpful
@Baryn0013 жыл бұрын
Professor visibly miffed when nobody asks questions. My only question after my very first OpenGL lecture: "What?"
@itierney10 жыл бұрын
6 mins 40 seconds he starts using "Feet"??. Come on people SI units!
@-taz-9 жыл бұрын
Ian Tierney You mean 400000 milliseconds in.
@mistereftup56299 жыл бұрын
+Ian Tierney nobody gives a shit about foreigners
@NeilRoy9 жыл бұрын
+Ian Tierney Huh? This is a Stanford University video, they're in the United States, they use feet. Why are you surprised at this?
@partyk1d2411 жыл бұрын
And nothing on shaders?!?!?! just call it a stat machine?
@moofymoo9 жыл бұрын
9:40 - illuminati presence in opengles confirmed!
@MenkoDany12 жыл бұрын
39:22 the laugh... are there only 2 people in the class or what?
@j_respect59483 жыл бұрын
I'm wondering
@partyk1d2411 жыл бұрын
Great but getting old, glFrustumf?!?!?! needs to be updated with Matrix based transforms.
@EddieKMusic12 жыл бұрын
There is mouse in android.
@mistereftup56299 жыл бұрын
Please, never comment on anything on the internet if you are Indian
@MetalCrotchGuy9 жыл бұрын
+Mister Eftup Dafuq is wrong with you?
@dopamine50717 жыл бұрын
Agreed. Such an thick terrible accent makes my ears to bleed, head to hurt
@webgpu6 жыл бұрын
THIS VIDEO JUST BECAME OBSOLETE - APPLE IS DROPPING SUPPORT FOR OPENGL (unless you're part of the 90% mobile users who chose Android :-)
@RyanMartinRAM6 жыл бұрын
Still, the fundamentals in here are always going to be useful.
@jokinglimitreached15036 жыл бұрын
@@RyanMartinRAM true
@j_respect59483 жыл бұрын
Is there more of these videos because it says 19 in title?
@VorssaGaming8 жыл бұрын
Hmm, seems legit to me.
@zeljkobanovic439810 жыл бұрын
When IOS and Android killed Flash I expected something realistic as a replacement. Lets speak about OPENGL ES ... The famous engine that may or may not work, that you may or may not understand. Over-complicated, time demanding and with no good tutorial online. Try to load rigged mesh and you will find yourself in the ocean of troubles.
@NeilRoy9 жыл бұрын
+zeljko banovic If you find this complicated, and it is probably the simplest form of OpenGL you can get, than you don't want to even look at modern OpenGL systems with shaders etc. Or even regular OpenGL on desktop systems. Stick to 2D.
@zeljkobanovic43989 жыл бұрын
You know... If you find writing to complicated you really should not write. You missed the point, and that is bad writhing. I did not say I cant handle it, I said it is too low level for 21 century ... They should encapsulated it. Like, create some native mesh loaders or some collision detection classes ...
@NeilRoy9 жыл бұрын
zeljko banovic it's "too complicated" not "to complicated" and it's "writing" not "writhing". Also, it's "can't" not "cant". You really should learn to spell before criticizing someone else for their writing. :) Anyhow, OpenGL is a graphic library. Loading meshes and collision detection has nothing to do with graphics. If you want all that than what you need is a premade 3D Engine like Unity or the Unreal Engine.
@zeljkobanovic43989 жыл бұрын
+Neil Roy Kad ti budes pricao mojim jezikom, mozes da kritikujes moje spelovanje tvog nerazvijenog jezika... I dalje demonstriras nekulturu... Verovatno Amerikanac? Nista cudno...
@Fer145123159 жыл бұрын
+zeljko banovic I have too agree, it is getting way tooooo low, now if anyone wants to get from C++ to assembler they have a way to do it (but very few people really need to), now in graphics world - why everyone is pushed to use assembler (shaders) for everything? Put it there for those who need it, why deprecating tons of knowledge/tutorials/videos etc. on classic opengl (pre 3.3) and force this overarchitectured and confusing stuff on everyone? Crazy!