Interactive Graphics 18 - Tessellation Shaders

  Рет қаралды 13,296

Cem Yuksel

Cem Yuksel

Күн бұрын

Interactive Computer Graphics.
School of Computing, University of Utah.
Full Playlist: • Interactive Computer G...
Course website: graphics.cs.utah.edu/courses/...

Пікірлер: 37
@zarblitz
@zarblitz Күн бұрын
As an aspiring tech artist (maybe one day!) on a self-learning journey, your videos are invaluable. Thank you.
@Tharindu87
@Tharindu87 3 ай бұрын
I’m professional developer who self started my journey into computer graphics. Couldn’t wrap my head around the tessellation shader intro in realtime rendering fourth edition so watched this and my mind is blown. Thank you so much for making these lectures public so we can all learn!
@HylianEvil
@HylianEvil 2 жыл бұрын
You videos reignite my passion for computer graphics. Thank you
@MrFacciolone
@MrFacciolone Жыл бұрын
found this while looking for some tessellation demonstration and it blew my mind. The explanation of the shader stages is the best I ever found since I discovered tessellation existed, and the cloth model at the end left me speechless. Thx for the quality teachings
@MaximoComperatore
@MaximoComperatore Ай бұрын
this is top notch education, thank you so much Cem
@KidusYohannes
@KidusYohannes 2 жыл бұрын
This is my favorite course! Great lecture as always professor.
@dreamisover9813
@dreamisover9813 Жыл бұрын
Just found this channel, love the topics!
@murrischcat9098
@murrischcat9098 Жыл бұрын
WOW! This is incredibly helpful! I will binge all your videos
@chuang-yucheng8665
@chuang-yucheng8665 Жыл бұрын
I am working for a GPU company, your video is great and really usefully :)
@kubatpav
@kubatpav 10 ай бұрын
Amazing lesson, as always.
@maksymiliank5135
@maksymiliank5135 Жыл бұрын
This is great. I absolutely love your lectures! The explanations are very clear.
@CodeParticles
@CodeParticles Жыл бұрын
@Cem Yuksel, thank you sir for this terrific upload. I was very hesitant on jumping into Tessellations because even after all these years there's barely any in depth introductions on them but you made it so much easier to understand! Cheers~ 👏👏
@PixelPulse168
@PixelPulse168 Жыл бұрын
Great tutorial for tessellation shaders. Thanks
@HariprasadCR
@HariprasadCR Жыл бұрын
Loved the explanation
@sehzadeselim863
@sehzadeselim863 3 ай бұрын
Thanks to you I fell in love with tessellation
@avarise5607
@avarise5607 3 ай бұрын
Showing it in GPU pipeline makes it so clear! I now underatand why this tech exists
@yessicadanielahernandez6348
@yessicadanielahernandez6348 Ай бұрын
Amazing explanation!!! New Sub!
@joeyninteen175
@joeyninteen175 Жыл бұрын
Aswsome course! It is very intuitive and vivid, and it can be understood by a beginner like me.
@2002budokan
@2002budokan 2 жыл бұрын
Çok güzel anlatım, yeni başlayanlar için çok gerekli bir kurs, muhteşem sunum. Günümüzde GPU pipeline'ı bilmeden grafik programlamak mümkün değil. Tesellation nedir? Neden gerekli? Hangi problemleri çözüyor? Pipeline'ın neresindedir? Cem tüm bunları tek tek cevaplarken öğrenmek, hem bu garip isimlerin akılda kalmasını kolaylaştırıyor, hem de öğrenimi eğlenceli kılıyor.
@xiangzhou9126
@xiangzhou9126 8 ай бұрын
Tessellation shader was introduced in GLSL 400 instead of GLSL 410?
@hongfredrick2761
@hongfredrick2761 9 ай бұрын
In reviewing the content at 35:44, I believe there may be some mistakes. The examples given for fractional_odd_spacing and fractional_even_spacing appear to be reversed when compared to the OpenGL wiki. From my understanding, the examples provided in the OpenGL wiki seem more logical to me. For some reasons I can not post link here ,I get it from google by keyword like"Fractional odd spacing principle".Could you tell me what's going wrong here?
@cem_yuksel
@cem_yuksel 9 ай бұрын
Good catch! You are right. They are mislabeled. The "fractional_even_spacing" and "fractional_odd_spacing" labels should have been swapped on that slide.
@aneebkaramat7482
@aneebkaramat7482 Жыл бұрын
Nice course Sir kindly can you share us material?
@permindersingh4844
@permindersingh4844 2 ай бұрын
If i need dynamic level of details for large and complex chemical molecules. is it possible via geometry shaders or through Tessellation ???
@elronnd_9515
@elronnd_9515 Жыл бұрын
I don't understand how you can generate more detail on the fly from simple geometry; do you know anywhere I can read more about this? Is it basically a simple decompression algorithm? Generating the teapot geometry on the fly makes sense (presumably from a height map or something), but surely the height map takes up more space than the corresponding geometry would if represented as vertices from the start.
@cem_yuksel
@cem_yuksel Жыл бұрын
You can generate more detail with code. Also, a heightfield can indeed take up much less space.
@DasAntiNaziBroetchen
@DasAntiNaziBroetchen Жыл бұрын
One vertex position: 3 floats = 12 bytes One height map texel: 8 bits
@memorycl
@memorycl Жыл бұрын
"Hull" is the mathematics term for the geometry domain in question. Believe it or not, Microsoft is more technically correct here...Khronos applied the layman's naming convention.
@allocator7520
@allocator7520 11 ай бұрын
German shaders wo? :d (in the titles)
@user-vo1rp4vv2v
@user-vo1rp4vv2v Жыл бұрын
Is there a universal way to subdivide a highly simplified OBJ format model back into its original appearance?
@DasAntiNaziBroetchen
@DasAntiNaziBroetchen Жыл бұрын
No
@dennisrkb
@dennisrkb Жыл бұрын
Can you send a single triangle to the gpu and then tesselate it into an entire model?
@cem_yuksel
@cem_yuksel Жыл бұрын
That sounds more like how mesh shaders work. With tessellation shaders, you can generate a large (but limited) number of connected triangles from a single triangle, but not a mesh with an arbitrary topology.
@omnithewolf3628
@omnithewolf3628 Жыл бұрын
Hiii! Does anyone know if anyone’s working on an AI that does Dynamic tessellation/Dynamic topology (for 3D models) and meshes, UV and weighting? Would love to get that ball rolling for future 3D artist!
@DasAntiNaziBroetchen
@DasAntiNaziBroetchen Жыл бұрын
What you said are a bunch of buzzwords thrown together and I cannot gain any meaning from it. Also, please stop going around trying to "get the ball rolling" by making other people implement your idea (for free). If you want to get the ball rolling, start making something.
@zhongyijiang4615
@zhongyijiang4615 2 жыл бұрын
Phi!
Interactive Graphics 17 - Geometry Shaders
51:09
Cem Yuksel
Рет қаралды 8 М.
Stupid man 👨😂
00:20
Nadir Show
Рет қаралды 26 МЛН
Көтіңді қысып, ауылға қайт! | АСАУ | 2 серия
33:16
The World's Fastest Cleaners
00:35
MrBeast
Рет қаралды 133 МЛН
Interactive Graphics 22 - Global Illumination
1:10:00
Cem Yuksel
Рет қаралды 11 М.
Introduction to shaders: Learn the basics!
34:50
Barney Codes
Рет қаралды 261 М.
Intro to Graphics 23 - Computer Animation
50:24
Cem Yuksel
Рет қаралды 4,6 М.
An introduction to Shader Art Coding
22:40
kishimisu
Рет қаралды 888 М.
GRASS RENDERING in OpenGL // Code Review
47:23
The Cherno
Рет қаралды 112 М.
Interactive Graphics 25 - Volume Rendering
1:10:11
Cem Yuksel
Рет қаралды 20 М.
Interactive Graphics 15 - Lights & Shadows
1:08:29
Cem Yuksel
Рет қаралды 4,6 М.
phone charge game #viral #tranding #new #reels
0:18
YODHA GAMING RAAS
Рет қаралды 12 МЛН
Индуктивность и дроссель.
1:00
Hi Dev! – Электроника
Рет қаралды 427 М.
Клавиатура vs геймпад vs руль
0:47
Balance
Рет қаралды 1 МЛН
The power button can never be pressed!!
0:57
Maker Y
Рет қаралды 41 МЛН