
opengl shading language
wodownload2
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
OpenGL 4 Shading Language Cookbook chapter 2——The Basics of GLSL Shaders
introductionshaders were first added into opengl in version 2.0, introducing programmability into the formerly 之前胡 fixed-function opengl pipeline.shaders give us the power to implement alternative r...原创 2019-08-03 09:23:28 · 795 阅读 · 0 评论 -
OpenGL 4 Shading Language Cookbook chapter 8——Using Noise in Shaders
In this chapter, we will cover:ff Creating a noise texture原创 2019-08-08 11:32:03 · 161 阅读 · 0 评论 -
OpenGL 4 Shading Language Cookbook chapter 1——Getting Started with GLSL
Sending data to a shader using uniform variablesvertex attributes provide one avenue for providing input to shaders;a second technique is uniform variables.uniform variables are intended to be used...原创 2019-08-01 20:08:45 · 662 阅读 · 1 评论 -
OpenGL 4 Shading Language Cookbook chapter 7——Shadows
In this chapter, we will cover:原创 2019-08-04 09:33:21 · 668 阅读 · 0 评论 -
OpenGL 4 Shading Language Cookbook chapter 6——Using Geometry and Tessellation Shaders
In this chapter, we will cover:ff Point sprites with the geometry shaderff Drawing a wireframe on top of a shaded meshff Drawing silhouette lines using the geometry shaderff Tessellating a curvef...原创 2019-08-04 09:32:33 · 548 阅读 · 0 评论 -
OpenGL 4 Shading Language Cookbook chapter 4——Using Textures
Textures are an important and fundamental aspect of real-time rendering in general,and OpenGL in particular. The use of textures within a shader opens up a huge range ofpossibilities. Beyond just us...原创 2019-08-04 09:27:55 · 801 阅读 · 0 评论 -
OpenGL 4 Shading Language Cookbook chapter 5——Image Processing and Screen Space Techniques
introductionin this chapter, we will focus on techniques that work directly with the pixels in a framebuffer.These techniques typically involve multiple passes. An initial pass produces the pixel da...原创 2019-08-04 09:05:22 · 467 阅读 · 0 评论 -
OpenGL 4 Shading Language Cookbook chapter 10——Using Compute Shaders
In this chapter, we will cover the following recipes:ff Implementing a particle simulation with the compute原创 2019-08-08 11:33:30 · 767 阅读 · 0 评论