Donate?
Topics
Balder3D Binary Man Commodore 64 CUDA Demoscene DirectX DirectX11 DirectX12 Fractal Game Camp Game programming Gaming General Graphics Grill Simulator 360 Kinect Math Parallel Computing Shaders Silverlight Spill Technology Tutorial Uncategorized Unity Windows 8 Windows 10 Windows Phone XNA XNA Shader Tutorialpetriw
- RT @Hoffgame: Want a game where you befriend an ox and smash your way to riches? You can do that and more in #ikoneiisland, which just laun… 7 months ago
- Been working on some things for my Space Flight Simulator over the summer, feel free to join, might be interesting… twitter.com/i/web/status/1… 7 months ago
- RT @babylonjs: We'd like to formally introduce the next version of the Babylon Platform - #BabylonJS5 🥳🥳🥳 Blog: aka.ms/5.0_Blog… 10 months ago
- RT @PlayReentry: Real-time data monitoring of the Lunar Module in the Apollo Mission Control #multiplayer module in Reentry. #gamedev #gdc… 1 year ago
- Very happy to see N9 creating content for @PlayReentry! In this video, he will prepare and ignite those powerful F1… twitter.com/i/web/status/1… 1 year ago
- PMDG 737 for Microsoft Flight Simulator - Preview Trailer youtu.be/6HGIMzon84E via @YouTube #msfs2020 #fs2020 1 year ago
Blogroll
-
Join 208 other subscribers
Meta
Category Archives: XNA Shader Tutorial
XNA Shader Programming source now on GitHub
As with the Commodore 64 programming tutorial series, I have now moved all the source from my XNA Shader Programming tutorial series to GitHub. The XNA Shader Programming series goes through the theory and the HLSL implementation of various effects … Continue reading
Posted in Math, Shaders, XNA, XNA Shader Tutorial
Leave a comment
XNA 4.0 Shader Programming #6–Simple Ocean
Welcome back to my tutorial. Today, we are not going to learn anything new (almost), but instead put together a scene that uses some different shaders in order to see how powerful shaders can be. The island The island is … Continue reading
Posted in Tutorial, XNA, XNA Shader Tutorial
5 Comments
XNA 4.0 Shader Programming #5–Deform Shader
Welcome back to the XNA Shader Programming series. Since the start of tutorial 1, we have been looking at different lighting algorithms. Todays tutorial will be quite short and different, compared to those others, a pure vertex shader effect for … Continue reading
Posted in Tutorial, XNA Shader Tutorial
7 Comments
XNA 4.0 Shader Programming #4–Normal Mapping
Welcome back to the XNA Shader Programming series. I hope you enjoyed the last 3 tutorials, and have started to get a grip on shaders! Last time we talked about Specular lighting, and how to implement this in our … Continue reading
Posted in Tutorial, XNA Shader Tutorial
10 Comments
XNA 4.0 Shader Programming #3–Specular light
Hi, and welcome to Tutorial 3 of my XNA 4.0 Shader Programming tutorial. Today we are going to implement an other lighting algorithm called Specular Lighting. This algorithm builds on my Ambient and Diffuse lighting tutorials, so if you haven’t … Continue reading
Posted in Tutorial, XNA Shader Tutorial
5 Comments
XNA 4.0 Shader Programming #2–Diffuse light
Hi, and welcome to Tutorial 2 of my XNA 4.0 Shader Programming tutorial. Today we are going to work on Tutorial 1 in order to make the lighting equation a bit more interesting, by implementing Diffuse lighting. Diffuse light isn’t … Continue reading
Posted in Tutorial, XNA Shader Tutorial
4 Comments
XNA 4.0 Shader Programming #1–Intro to HLSL, Ambient light
So, you want to learn the magic that puts the gold into modern games? Note: This series is an update to the previous XNA Shader Programming series I have written for XNA 3.0. If you know both XNA 3.0 and … Continue reading
Posted in Tutorial, XNA Shader Tutorial
6 Comments
XNA Shader Programming – Tutorial 26, Bump Mapping Perlin Noise
This tutorial will continue from Tutorial 25, where we implemented a noise function. Now that you have the Perlin Noise-function in your shader, it is very simple to implement Bump Mapping. The object being rendered contains normals on each point … Continue reading
Posted in Graphics, Tutorial, XNA Shader Tutorial
2 Comments
XNA Shader Programming – Tutorial 25, Perlin Noise using the GPU
This tutorial will intruduce you to procedural textures. If you ever want to generate textures procedurally, you probably stumble upon the Perlin Noise algorithm created by Ken Perlin in 1983. Why noise? If you are trying to model natural textures … Continue reading
Posted in Graphics, Tutorial, XNA Shader Tutorial
4 Comments
Another approach for Tutorial 14, Transmittance
Matthew Vitelli provided me with another approach to the transmittance technique. What he is doing is to compute the transmission specially for each object. This would allow you to have specialized Du and C components for each object and also … Continue reading
Posted in XNA Shader Tutorial
3 Comments