CanvasGLSL

Quick rating

CanvasGLSL

No reviews yet

Replace every menu background with custom GLSL shaders. with a live, in-game shader editor with syntax highlighting, auto-compile, Shadertoy support, and shader file management.

Mod Loaders
Fabric
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Unsupported

About

Project Details

Type
Mod
License
Creative Commons Zero v1.0 Universal
Latest Version
canvasglsl-1.21.4-0.1.0+mc1.21.4.jar
Authors
CurseForge
Modrinth

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.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

CanvasGLSL

Replace Minecraft's menu backgrounds with custom GLSL shaders. Includes a built-in shader editor with syntax highlighting.

Embed Removed: https://www.youtube-nocookie.com/embed/KMdCm9JIzO0

Features

  • Live shader editor (press Insert to open)
  • Works on all menu screens (title, singleplayer, multiplayer, options, etc.)
  • Shadertoy compatible - paste shaders directly from Shadertoy
  • Auto-compile or manual compile modes
  • File manager for organizing shaders
  • Syntax highlighting

Installation

  1. Install Fabric loader for Minecraft 1.21.10
  2. Download the latest release JAR
  3. Put it in your .minecraft/mods folder
  4. Launch the game

Usage

Opening the Editor

Press Insert while in any menu to open the shader IDE. Press Insert or Esc to close it.

Writing Shaders

Shaders are saved in .minecraft/canvasglsl/. You can create folders to organize them.

Supported uniforms:

  • uniform float iTime; - Time in seconds
  • uniform vec3 iResolution; - Screen resolution (width, height, aspect)
  • uniform vec4 iMouse; - Mouse position (x, y, click x, click y)
  • uniform int iFrame; - Frame counter
  • uniform sampler2D iChannel0; - Procedural noise textures (iChannel0 through iChannel3)
  • uniform float iTimeDelta; - Time since last frame
  • uniform vec4 iDate; - Current date/time (year, month, day, seconds)
  • uniform float iSampleRate; - Audio sample rate (44100)

Example shader:

void mainImage(out vec4 fragColor, in vec2 fragCoord) {
    vec2 uv = fragCoord / iResolution.xy;
    vec3 col = 0.5 + 0.5 * cos(iTime + uv.xyx + vec3(0, 2, 4));
    fragColor = vec4(col, 1.0);
}

Using Shadertoy Shaders

  1. Copy shader code from Shadertoy
  2. Paste into the editor
  3. Click "Compile" or enable auto-compile
  4. Done! The shader will render as your menu background

Controls

  • Insert - Toggle shader editor
  • Esc - Close editor
  • Ctrl+S - Save current shader
  • Compile button - Compile shader manually
  • Auto-compile toggle - Auto-compile on save

CanvasGLSL

Replace Minecraft's menu backgrounds with custom GLSL shaders. Includes a built-in shader editor with syntax highlighting.

Features

  • Live shader editor (press Insert to open)
  • Works on all menu screens (title, singleplayer, multiplayer, options, etc.)
  • Shadertoy compatible - paste shaders directly from Shadertoy
  • Auto-compile or manual compile modes
  • File manager for organizing shaders
  • Syntax highlighting

Installation

  1. Install Fabric loader for Minecraft 1.21.10
  2. Download the latest release JAR
  3. Put it in your .minecraft/mods folder
  4. Launch the game

Usage

Opening the Editor

Press Insert while in any menu to open the shader IDE. Press Insert or Esc to close it.

Writing Shaders

Shaders are saved in .minecraft/canvasglsl/. You can create folders to organize them.

Supported uniforms:

  • uniform float iTime; - Time in seconds
  • uniform vec3 iResolution; - Screen resolution (width, height, aspect)
  • uniform vec4 iMouse; - Mouse position (x, y, click x, click y)
  • uniform int iFrame; - Frame counter
  • uniform sampler2D iChannel0; - Procedural noise textures (iChannel0 through iChannel3)
  • uniform float iTimeDelta; - Time since last frame
  • uniform vec4 iDate; - Current date/time (year, month, day, seconds)
  • uniform float iSampleRate; - Audio sample rate (44100)

Example shader:

void mainImage(out vec4 fragColor, in vec2 fragCoord) {
    vec2 uv = fragCoord / iResolution.xy;
    vec3 col = 0.5 + 0.5 * cos(iTime + uv.xyx + vec3(0, 2, 4));
    fragColor = vec4(col, 1.0);
}

Using Shadertoy Shaders

  1. Copy shader code from Shadertoy
  2. Paste into the editor
  3. Click "Compile" or enable auto-compile
  4. Done! The shader will render as your menu background

Controls

  • Insert - Toggle shader editor
  • Esc - Close editor
  • Ctrl+S - Save current shader
  • Compile button - Compile shader manually
  • Auto-compile toggle - Auto-compile on save

Screenshots

Gallery

  • 030a38cf1bbbbdad0b9b8ac0cf2df8517fa221ed.png
    030a38cf1bbbbdad0b9b8ac0cf2df8517fa221ed.png 030a38cf1bbbbdad0b9b8ac0cf2df8517fa221ed.png
  • ea558c98a1bd552a71627ed7be7a7a14b058914a.png
    ea558c98a1bd552a71627ed7be7a7a14b058914a.png ea558c98a1bd552a71627ed7be7a7a14b058914a.png

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

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Modrinth
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works