Mod
Extended Shaders
No reviews yet
Adding shader support for mods
Forge is a popular mod loader for versions 1.1+ of Minecraft.
Community voices
Reviews
Click once to include, again to exclude, again to clear
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
About
Project Details
For authors
Embed Badge
If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.
Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.
Identifiers
Platform IDs
About
Description
NOTE: The 1.10.2 version is NOT optifine compatible due to the optifine-shadersmod merge in 1.8
Extended Shaders
Shader API for mods!
Extended Shaders is a coremod API that allows forges mod to use shaders, without needing to mess with coremodding and still being compatible with other mods that use shaders via this API.
It allows mods to add shaders and post-processing effects!
You cannot use this API without a good understanding of GLSL, including the GLSL compatibility profile as that is what you will be using.
This mod is Optifine compatible. However, post-processing will ONLY work if "fast render" is OFF.
If Optifine is installed, you can enable shaders by selecting 'Extended Shaders' in the shaderpacks menu. Otherwise, you can turn shaders on/off in the "Video Settings" menu.
this mod REQUIRES your PC support framebuffers, framebuffer blitting, and floating-point textures. It will crash if you do not. This is purposeful.
Readme from GitHub, for modders:
Extended Shaders mod for Minecraft 1.12.2.
The purpose of this API, and it's containing coremod, Extended Shaders, is to allow mods to use shaders and post-processors inside Minecraft without needing to learn how to make a coremod, and without sacrificing compatibility with other mods using this shader system.
It is designed to allow multiple mods to "attach" shader uniforms, variables, constants, and code without conflicting with each other, in a way not provided by GLSL itself.
It is NOT intended to be used by someone without a good understanding of GLSL.
HOW TO USE:
You will need to add the API classes to your project, PRESERVING the package names.
HOW TO MAKE A SHADER:
TO MAKE A VERTEX SHADER:
1. create a file in your mod's assets, containing a list of the uniforms, variables, and constants, like this:
uniform float burnAmount; //uniform
varying vec4 fragCol; //variable
#define col vec3(.976, .969, .816) //constant
2. create a file in your mod's assets, containing the code for the shader, like this:
fragCol = fragCol * col;
3. create a new ShaderData instance, like this:
vertShader = new ShaderData(new ResourceLocation(modid, uniformslocation), new ResourceLocation(modid, codelocation), uniform name 1, uniform name 2, ...);
4. to turn it ON, do this:
ShaderRegistry.addVertexShader(vertShader);
5. to turn it OFF, do this:
ShaderRegistry.removeVertexShader(vertShader);
TO MAKE A FRAGMENT SHADER:
1. create a file in your mod's assets, containing a list of the uniforms, variables, and constants, like this:
uniform float burnAmount; //uniform
varying vec2 textureCoords; //variable
#define col vec3(.976, .969, .816) //constant
2. create a file in your mod's assets, containing the code for the shader. you will work via modifying gl_fragData[0], or setting it if you prefer, like this:
float depth = sqrt(eyePos.x * eyePos.x + eyePos.y * eyePos.y + eyePos.z * eyePos.z);
if (depth > 64.0) discard;
depth = clamp(depth / 64.0, 0, 1);
float val = (max(max(gl_FragData[0].r, gl_FragData[0].g), gl_FragData[0].b) + min(min(gl_FragData[0].r, gl_FragData[0].g), gl_FragData[0].b)) * .25;
gl_FragData[0] = vec4(vec3(1.0) - col * (depth + val - depth * val), gl_FragData[0].a);
3. create a new ShaderData instance, like this:
fragShader = new ShaderData(new ResourceLocation(modid, uniformslocation), new ResourceLocation(modid, codelocation), uniform name 1, uniform name 2, ...);
4. to turn it ON, do this:
ShaderRegistry.addFragmentShader(fragShader);
5. to turn it OFF, do this:
ShaderRegistry.removeFragmentShader(fragShader);
PROVIDED UNIFORMS/VARIABLES:
check src\main\resources\assets\extendedshaders\shaders\shader_uniform.txt
HOW TO MAKE A POST-PROCESSOR:
1. create a file in your mod's assets, containing a list of the post-processor's uniforms and constants, like this:
uniform float currentTime; //uniform
#define rad 3.0 //constant
2. create a file in your mod's assets, conatining the post-processor's code, like this:
float tx1 = rad * dx;
float tx2 = tx1 * .5;
float ty = rad * .5 * sqrt(3.0) * dy;
vec3 cp1 = texture2D(tex0, texCoords).rgb;
vec3 cp1 = texture2D(tex0, texCoords + vec2(tx1, 0)).rgb;
vec3 cp3 = texture2D(tex0, texCoords + vec2(tx2, ty)).rgb;
vec3 cp4 = texture2D(tex0, texCoords + vec2(-tx2, ty)).rgb;
vec3 cp5 = texture2D(tex0, texCoords + vec2(-tx1, 0)).rgb;
vec3 cp6 = texture2D(tex0, texCoords + vec2(-tx2, -ty)).rgb;
vec3 cp7 = texture2D(tex0, texCoords + vec2(tx2, -ty)).rgb;
gl_FragData[0] = vec4((cp1 + cp2 + cp3 + cp4 + cp5 + cp6 + cp7) / 7, 1);
3. create a new PostProcessor instance, like this
postProcessor = new PostProcessor(new ResourceLocation(modid, uniformslocation), new ResourceLocation(modid, codelocation), uniform name 1, uniform name 2, ...);
4. to turn it ON use this:
PostProcessorRegistry.addPostProcessor(postProcessor);
5. to turn it OFF use this:
PostProcessorRegistry.removePostProcessor(postProcessor);
PROVIDED UNIFORMS/VARIABLES: check src\main\resources\assets\extendedshaders\shaders\post_processor_frag_uniforms.txt
The API also allows for priorities on shaders and post-processors. Look through the API for more information on these advanced features.
Screenshots
Gallery
Versions
Files
Relations
Project Relations
More like this
Similar Mods
Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.
On ModDex
Community snapshot
By the numbers
Statistics
Want to reach Minecraft players?
We're looking for a server hosting partner to feature here and other parts of the site. Interested? Send us a message!
Get in touchGet it on
Available Platforms
On ModDex
Community snapshot
By the numbers