19. OpenGL ES

  Рет қаралды 93,178

Stanford

Stanford

Күн бұрын

Пікірлер: 69
@germandiagogomez
@germandiagogomez 12 жыл бұрын
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.
@Anothergames
@Anothergames 11 жыл бұрын
No matter what others say, this is clearly the best OpenGL tutorial I have ever seen for 3 years around.
@anonamemous6865
@anonamemous6865 3 жыл бұрын
And it is 11 years ago.... It's still the best till now
@varionmori709
@varionmori709 4 жыл бұрын
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
@jarar198619
@jarar198619 7 жыл бұрын
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-thai4803
@thuannguyen-thai4803 12 жыл бұрын
Thank so much Mr. David Jacobs. It is wonderful.
@chenandy5714
@chenandy5714 11 жыл бұрын
the basic concepts are very useful for further study ,and you describe them very clear ,so thanks
@Lagonz2000
@Lagonz2000 12 жыл бұрын
David Jacobs for PRESIDENT!
@walter0bz
@walter0bz 12 жыл бұрын
state based APIs... people coming from functional languages must love it :)
@kelekokerupuk
@kelekokerupuk 12 жыл бұрын
Your Video Is Very Useful Sharing David Jacobs provides and introduction to OpenGL ES. Coordinate systems and tranformations, drawing geometry, textures, and other details.
@KyleLuce
@KyleLuce 12 жыл бұрын
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.
@宋佳强-q8y
@宋佳强-q8y 8 жыл бұрын
How to understand the parameters of glFrustumf(left, right, top, bottom, near, far) ?
@RandyFortier
@RandyFortier 7 жыл бұрын
18:30
@mayuranarudsothy5344
@mayuranarudsothy5344 12 жыл бұрын
excellent lecture, i expect more lectures from you regarding opengl ;)
@AndrewKharchyshyn
@AndrewKharchyshyn 11 жыл бұрын
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.
@白天杰-d6d
@白天杰-d6d 3 жыл бұрын
cool video
@KyleLuce
@KyleLuce 12 жыл бұрын
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.
@TheRadioMu
@TheRadioMu 10 жыл бұрын
10:50 you know that objects reduce size with greater distance, why is the view frustum growing greater with disrance : )
@mistereftup5629
@mistereftup5629 9 жыл бұрын
+TheRadioMu to avoid the deep screen appearing to narrow, when it doesn't
@NeilRoy
@NeilRoy 9 жыл бұрын
+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?
@KyleLuce
@KyleLuce 12 жыл бұрын
No problem my friend. Best of luck on your graphics programs/games! :)
@EddieKMusic
@EddieKMusic 12 жыл бұрын
Many people say that it's syntax sucks. Not just me. It's very counter intuitive and hard to read.
@TheRadioMu
@TheRadioMu 10 жыл бұрын
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
@mistereftup5629
@mistereftup5629 9 жыл бұрын
+TheRadioMu linear algebra is it's own 60,000 videos
@moofymoo
@moofymoo 11 жыл бұрын
this is great, answers lot of 'why' questions.
@denisblack9897
@denisblack9897 7 жыл бұрын
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
@TheRadioMu
@TheRadioMu 12 жыл бұрын
finally i get it. this guy rocks. i feel sorry for those students though, opengl in one day sucks
@fudgepacker321
@fudgepacker321 13 жыл бұрын
this is awesome, thank you
@as12df12
@as12df12 10 жыл бұрын
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?
@dk0r51
@dk0r51 10 жыл бұрын
Perhaps because right handed systems are defined conventions throughout mathematics, physics, engineering, etc..
@NeilRoy
@NeilRoy 9 жыл бұрын
+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.
@dk0r51
@dk0r51 9 жыл бұрын
***** I agree with you completely --the best convention to use is the one which is actually a convention..
@as12df12
@as12df12 9 жыл бұрын
***** Whoa, I actually missed that, thanks. Anthony Phillips Well, left-handed is a convention with game developers... but I see the point.
@dk0r51
@dk0r51 9 жыл бұрын
+as12df12 Thanks for the info but I find this difficult to believe. Take care.
@grunder20
@grunder20 13 жыл бұрын
Future of Technology.
@sambisambi2010
@sambisambi2010 12 жыл бұрын
openGL is openGL ,but just there is little difference in input and some function (for example there is no mouse in android ) :D
@nabilulhaq5733
@nabilulhaq5733 4 ай бұрын
yogya present
@KyleLuce
@KyleLuce 12 жыл бұрын
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.
@denisblack9897
@denisblack9897 7 жыл бұрын
omg this is so helpful
@Baryn00
@Baryn00 13 жыл бұрын
Professor visibly miffed when nobody asks questions. My only question after my very first OpenGL lecture: "What?"
@itierney
@itierney 10 жыл бұрын
6 mins 40 seconds he starts using "Feet"??. Come on people SI units!
@-taz-
@-taz- 9 жыл бұрын
Ian Tierney You mean 400000 milliseconds in.
@mistereftup5629
@mistereftup5629 9 жыл бұрын
+Ian Tierney nobody gives a shit about foreigners
@NeilRoy
@NeilRoy 9 жыл бұрын
+Ian Tierney Huh? This is a Stanford University video, they're in the United States, they use feet. Why are you surprised at this?
@partyk1d24
@partyk1d24 11 жыл бұрын
And nothing on shaders?!?!?! just call it a stat machine?
@moofymoo
@moofymoo 9 жыл бұрын
9:40 - illuminati presence in opengles confirmed!
@MenkoDany
@MenkoDany 12 жыл бұрын
39:22 the laugh... are there only 2 people in the class or what?
@j_respect5948
@j_respect5948 3 жыл бұрын
I'm wondering
@partyk1d24
@partyk1d24 11 жыл бұрын
Great but getting old, glFrustumf?!?!?! needs to be updated with Matrix based transforms.
@EddieKMusic
@EddieKMusic 12 жыл бұрын
There is mouse in android.
@mistereftup5629
@mistereftup5629 9 жыл бұрын
Please, never comment on anything on the internet if you are Indian
@MetalCrotchGuy
@MetalCrotchGuy 9 жыл бұрын
+Mister Eftup Dafuq is wrong with you?
@dopamine5071
@dopamine5071 7 жыл бұрын
Agreed. Such an thick terrible accent makes my ears to bleed, head to hurt
@webgpu
@webgpu 6 жыл бұрын
THIS VIDEO JUST BECAME OBSOLETE - APPLE IS DROPPING SUPPORT FOR OPENGL (unless you're part of the 90% mobile users who chose Android :-)
@RyanMartinRAM
@RyanMartinRAM 6 жыл бұрын
Still, the fundamentals in here are always going to be useful.
@jokinglimitreached1503
@jokinglimitreached1503 6 жыл бұрын
@@RyanMartinRAM true
@j_respect5948
@j_respect5948 3 жыл бұрын
Is there more of these videos because it says 19 in title?
@VorssaGaming
@VorssaGaming 8 жыл бұрын
Hmm, seems legit to me.
@zeljkobanovic4398
@zeljkobanovic4398 10 жыл бұрын
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.
@NeilRoy
@NeilRoy 9 жыл бұрын
+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.
@zeljkobanovic4398
@zeljkobanovic4398 9 жыл бұрын
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 ...
@NeilRoy
@NeilRoy 9 жыл бұрын
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.
@zeljkobanovic4398
@zeljkobanovic4398 9 жыл бұрын
+Neil Roy Kad ti budes pricao mojim jezikom, mozes da kritikujes moje spelovanje tvog nerazvijenog jezika... I dalje demonstriras nekulturu... Verovatno Amerikanac? Nista cudno...
@Fer14512315
@Fer14512315 9 жыл бұрын
+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!
@EddieKMusic
@EddieKMusic 12 жыл бұрын
gosh Objective-C's syntax is HORRIBLE
A Brief Introduction to OpenGL
1:17:00
DigiPen Game Engine Architecture Club
Рет қаралды 49 М.
Android game graphics - OpenGL ES vs. Vulkan case study
26:10
Android Developers
Рет қаралды 17 М.
The Best Band 😅 #toshleh #viralshort
00:11
Toshleh
Рет қаралды 22 МЛН
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 62 МЛН
Introduction to shaders: Learn the basics!
34:50
Barney Codes
Рет қаралды 370 М.
The New Outlook is TERRIBLE
20:19
Chris Titus Tech
Рет қаралды 108 М.
OpenGL Graphics Pipeline Overview
1:14:14
UC Davis
Рет қаралды 60 М.
The Return of Procedural Programming - Richard Feldman
52:53
ChariotSolutions
Рет қаралды 48 М.
I Made a Graphics Engine (again)
8:27
Zyger
Рет қаралды 180 М.
Google’s Quantum Chip: Did We Just Tap Into Parallel Universes?
9:34
Introduction to OpenGLES and GLSL programming
38:08
media.ccc.de
Рет қаралды 10 М.
I never understood why you can't go faster than light - until now!
16:40
FloatHeadPhysics
Рет қаралды 4,7 МЛН
The Best Band 😅 #toshleh #viralshort
00:11
Toshleh
Рет қаралды 22 МЛН