OpenGL 4 Shading Language Cookbook by David Wolff

OpenGL 4 Shading Language Cookbook by David Wolff

Author:David Wolff
Language: eng
Format: epub
Tags: COM051070 - COMPUTERS / Programming Languages / C++, COM012040 - COMPUTERS / Programming / Games, COM012000 - COMPUTERS / Computer Graphics
Publisher: Packt Publishing
Published: 2018-09-27T08:45:54+00:00


How to do it...

In the fragment shader, we apply the Blinn-Phong reflection model in the first pass. In the second pass, we compute the vertical sum. In the third, we compute the horizontal sum:

in vec3 Position; // Vertex position in vec3 Normal; // Vertex normal

uniform int Pass; // Pass number

layout(binding=0) uniform sampler2D Texture0; // Light/material uniforms ....

layout( location = 0 ) out vec4 FragColor; uniform int PixOffset[5] = int[](0,1,2,3,4); uniform float Weight[5]; vec3 blinnPhong( vec3 pos, vec3 norm ) { // ... } vec4 pass1() { return vec4(blinnPhong( Position, normalize(Normal) ),1.0); } vec4 pass2() { ivec2 pix = ivec2(gl_FragCoord.xy); vec4 sum = texelFetch(Texture0, pix, 0) * Weight[0]; for( int i = 1; i < 5; i++ ) { sum += texelFetchOffset( Texture0, pix, 0, ivec2(0,PixOffset[i])) * Weight[i]; sum += texelFetchOffset( Texture0, pix, 0, ivec2(0,-PixOffset[i])) * Weight[i]; } return sum; } vec4 pass3() { ivec2 pix = ivec2(gl_FragCoord.xy); vec4 sum = texelFetch(Texture0, pix, 0) * Weight[0]; for( int i = 1; i < 5; i++ ) { sum += texelFetchOffset( Texture0, pix, 0, ivec2(PixOffset[i],0)) * Weight[i]; sum += texelFetchOffset( Texture0, pix, 0, ivec2(-PixOffset[i],0)) * Weight[i]; } return sum; } void main() { if( Pass == 1 ) FragColor = pass1();

else if( Pass == 2 ) FragColor = pass2();

else if( Pass == 3 ) FragColor = pass3(); }

In the OpenGL application, compute the Gaussian weights for the offsets found in the uniform variable PixOffset, and store the results in the array Weight. You could use the following code to do so:

char uniName[20]; float weights[5], sum, sigma2 = 4.0f; // Compute and sum the weights weights[0] = gauss(0,sigma2); // The 1-D Gaussian function sum = weights[0]; for( int i = 1; i < 5; i++ ) { weights[i] = gauss(i, sigma2); sum += 2 * weights[i]; } // Normalize the weights and set the uniform for( int i = 0; i < 5; i++ ) { snprintf(uniName, 20, "Weight[%d]", i); prog.setUniform(uniName, weights[i] / sum); }

In the main render function, implement the following steps for pass #1:

Select the render framebuffer, enable the depth test, and clear the color/depth buffers

Set Pass to 1

Draw the scene



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Popular ebooks
Deep Learning with Python by François Chollet(11976)
Sass and Compass in Action by Wynn Netherland Nathan Weizenbaum Chris Eppstein Brandon Mathis(7440)
Adobe Illustrator for Creative Professionals by Clint Balsar(3442)
Hands-On Unity 2022 Game Development by Nicolas Alejandro Borromeo(2762)
Autodesk Civil 3D 2024 from Start to Finish by Stephen Walz Tony Sabat(2758)
Mathematics for Game Programming and Computer Graphics by Penny de Byl(2669)
Drawing Shortcuts: Developing Quick Drawing Skills Using Today's Technology by Leggitt Jim(2554)
Taking Blender to the Next Level by Ruan Lotter(2342)
The 46 Rules of Genius: An Innovator's Guide to Creativity (Voices That Matter) by Marty Neumeier(2335)
Express Your Creativity with Adobe Express by Rosie Sue(2324)
Rapid Viz: A New Method for the Rapid Visualization of Ideas by Kurt Hanks & Larry Belliston(2233)
Learn Qt 5: Build modern, responsive cross-platform desktop applications with Qt, C++, and QML by Nicholas Sherriff(2200)
Fusion 360 for Makers by Lydia Sloan Cline(2005)
Hands-On Neural Networks with Keras by Niloy Purkait(1956)
Hands-On Unity 2022 Game Development - Third Edition by Nicolas Alejandro Borromeo(1834)
Mastering GUI Programming with Python by Alan D. Moore(1805)
Game Physics Cookbook by Gabor Szauer(1591)
Creative Character Design by Bryan Tillman(1583)
Going the Distance with Babylon.js by Josh Elster(1573)
Unreal Engine 5 Character Creation, Animation, and Cinematics by Henk Venter & Wilhelm Ogterop(1570)