Revision history of "GLSL and HLSL Example"

From GiderosMobile

There is no edit history for this page.

This page has been deleted. The deletion, protection, and move log for the page are provided below for reference.

  • 05:46, 5 November 2023 MoKaLux talk contribs deleted page GLSL and HLSL Example (content was: "__NOTOC__ '''Parent:''' Writing Shaders<br/> === A Blur shader === The code below defines a Blur shader consisting of: * vShaderBlur.{glsl/hlsl} vertex shader * fShaderBlur.{glsl/hlsl} fragment shader Here the shader files are in the '''assets''' root directory. No special flag is given. === GLSL version === ==== GLSL Vertex Shader: vShaderBlur.glsl ==== <syntaxhighlight lang="c"> attribute highp vec3 vVertex; attribute mediump vec2 vTexCoord; uniform highp mat4 vMatrix...")