Tutorial 3 - Introduction to OpenGL Shaders

  Рет қаралды 86,364

Jeffrey Chastine

Jeffrey Chastine

Күн бұрын

Пікірлер: 40
@bonbonpony
@bonbonpony 4 жыл бұрын
This dude is not wasting our time. Big thumbs up!
@markschumacher3157
@markschumacher3157 10 жыл бұрын
Someone who knows what their talking about ! Thanks alot.
@tanuvishu
@tanuvishu 11 жыл бұрын
This is one of the best tutorials for vertex and fragment shaders
@rodrigoreichert5845
@rodrigoreichert5845 8 жыл бұрын
Your videos are brilliant. I've been trying to get my head around modern opengl and these videos finally got me to understand it all. I've watched the Lynda's tutorial on opengl, read over various blogs and online tutorials, none really made sense, most of them regurgitated the same information, like reading a dictionary, and speed running through code without proper background. Thank you for taking the time to create and share these videos.
@jeffchastine
@jeffchastine 8 жыл бұрын
+Rodrigo Reichert Glad you liked them!
@vertigo6982
@vertigo6982 6 жыл бұрын
Thank you for making this video.. im watching an OpenGL series right now and they totally skipped over doing a quick run-thru of how OpenGL works.. This video is of great help.
@lewisb8634
@lewisb8634 8 жыл бұрын
Great video, I really appreciate you creating and uploading this! There are many tutorials or videos, that just go straight in with an example that are created in the sort of: "Then type this, and then this, and once you've done that, type this" format. These tutorials will get you a triangle sure, but they don't get anywhere really close to getting people the knowledge and basic understanding needed to be able to work freely with this code, and create anything you want from it. This tutorial is different, in that you've explained why and when things are used, but this can be applied to anything and you don't talk about something specific that you are creating. I like this! Thanks again, have a good day.
@trevor266productions
@trevor266productions 9 жыл бұрын
Dude I want you to know that for about 3 months I have been unable to get my OpenGL stuff to work, I had it working in 5 minutes following this series so far, your explanations are crystal clear and straight to the point. Thank you so much for making this series and I look forward to learning more :)
@jeffchastine3536
@jeffchastine3536 9 жыл бұрын
and THAT is why I made them :) Glad it helped!
@halabihazem
@halabihazem 11 жыл бұрын
Thanks for making this video. This is the best intro video I've found for OpenGL shaders.
@spardaks
@spardaks 2 жыл бұрын
Clear concept explanation and high efficency!
@anthonysegers01
@anthonysegers01 5 жыл бұрын
Great Job! Your OGL presentations are PERFECT! Thank You!
@BogusLarry
@BogusLarry 11 жыл бұрын
Thanks for explaining it from the ground up man. Really helped me.
@jeffchastine
@jeffchastine 11 жыл бұрын
Glad it helped!
@karolinr9
@karolinr9 10 жыл бұрын
I love the short and consise tutorial. Thank you :) Cleared things up!
@hoomanseyfi1941
@hoomanseyfi1941 7 жыл бұрын
Thank you. your explanation is so easy to understand and so helpful
@christheother9088
@christheother9088 10 жыл бұрын
Top notch work. Thank you.
@jeffchastine
@jeffchastine 10 жыл бұрын
My pleasure!
@xzibiting
@xzibiting 4 жыл бұрын
Out of curiosity you stated you could set a shader to a specific model, but how does that work exactly? Just trying to understand how shaders work overall
@PraveenMax
@PraveenMax 6 жыл бұрын
Good explanation of opengl shaders!
@jeffchastine
@jeffchastine 6 жыл бұрын
Glad it helped!
@viratsingh5955
@viratsingh5955 10 жыл бұрын
Great intro, thank you very much!
@jeffchastine
@jeffchastine 10 жыл бұрын
My pleasure :)
@vertigo6982
@vertigo6982 6 жыл бұрын
btw does glLinkProgram() take in more than one param for prog ID? that is.. does it take in both shader IDs at once or do you call glLinkProgram each time for each shader being used with a different ID.
@HiAdrian
@HiAdrian 10 жыл бұрын
Brilliant in clarity and delivery, I'll definitely check out your other videos. It almost seems to me as if a lot of OpenGL lessons are presented in a deliberately convoluted manner. Maybe this artificial entry barrier offers employment security, I don't know. I've even tried the oft recommended _OpenGL® Programming Guide, Version 4.3_ and it's filled with typos (English), very ugly C++ code and a generally chaotic progression of topics. I'm glad I didn't pay for it.
@jeffchastine
@jeffchastine 10 жыл бұрын
Glad you enjoyed them!
@oonmm
@oonmm 10 жыл бұрын
I rite those book for living this is no good vido! I need make money is my life! Ples stop giveing this away for free!
@monmomo04
@monmomo04 11 жыл бұрын
great tutorial
@mejaimounir9922
@mejaimounir9922 7 жыл бұрын
hope i can make more than one like keep going bro
@MateusChagasSousa
@MateusChagasSousa 11 жыл бұрын
nice tutorial dude! Thank you
@redstonechoi
@redstonechoi 6 жыл бұрын
Awesome
@amruthasrinivasan3754
@amruthasrinivasan3754 9 жыл бұрын
Can you please share the link to the source code.
@srhalnon
@srhalnon 11 жыл бұрын
im pretty sure openGL does support quads. glBegin(GL_QUADS); and than you just load in the verts.
@jeffchastine
@jeffchastine 11 жыл бұрын
I know this is true in early versions of OpenGL, but I believe they did away with glBegin().
@srhalnon
@srhalnon 11 жыл бұрын
hmmm. than i wonder what im using. it said 4.1 in the terminal when i checked earlier. i wasnt using shaders though. (figuring out that part now :p)
@cousinskitchen2
@cousinskitchen2 6 жыл бұрын
I thought openGL supports quads?
@abderrahmanemihoub8484
@abderrahmanemihoub8484 8 жыл бұрын
thanks bro
@jeffchastine
@jeffchastine 8 жыл бұрын
No problem, and hope it helped!
@Cihadyldz
@Cihadyldz 11 жыл бұрын
really hard to understand it is hard topic and he explains very fast
@SlashXel
@SlashXel 10 жыл бұрын
i ve been scripting in game maker and... i understood nothing :D guess i have to watch it 10 more times
Introduction to shaders: Learn the basics!
34:50
Barney Codes
Рет қаралды 374 М.
Introduction To Shaders  // OpenGL Tutorial #4
24:31
OGLDEV
Рет қаралды 11 М.
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 120 МЛН
Tutorial 12 - Lighting in OpenGL
13:00
Jeffrey Chastine
Рет қаралды 54 М.
Writing a Shader in OpenGL
28:21
The Cherno
Рет қаралды 322 М.
Introduction to Phong Lighting
9:44
Suboptimal Engineer
Рет қаралды 18 М.
Tutorial 9 - Coordinate Systems in OpenGL
7:37
Jeffrey Chastine
Рет қаралды 30 М.
Modern OpenGL Tutorial - Compute Shaders
11:27
Victor Gordan
Рет қаралды 63 М.
From CPU to GPU: Understanding Data Transfer with Buffers in OpenGL
15:41
Luke's Dev Tutorials
Рет қаралды 7 М.
Шейдеры в OpenGL
17:10
Triple Distillation
Рет қаралды 7 М.
The Art of Code - Dylan Beattie
1:00:49
NDC Conferences
Рет қаралды 4,7 МЛН