આ પલ્ગઇન 2 વર્ષથી વધુમાં અપડેટ કરવામાં આવ્યો નથી . એ કદાચ જાળવવામાં અથવા સપોર્ટેડ નહી હોય. વર્ડપ્રેસ ના વધુ તાજેતરનાં સંસ્કરણો સાથે ઉપયોગમાં લેવાય તો સુસંગતતા મુદ્દાઓ હોઈ શકે છે.

Display WebGL Shader

વર્ણન

This plugin allows you to display a WebGL2 fragment shader, compatible with https://shadertoy.com

Simply copy and paste the code of your fragment shader into the edit box.

This plugin makes use of the open source “gl-matrix” library by Brandon Jones and Colin MacKensie IV.

Your shader code should look like the example below. The mainImage() function is called once for each pixel.

`

void mainImage(out vec4 fragColor, in vec2 fragCoord)
{
// Normalized pixel coordinates (from 0 to 1).
vec2 uv = fragCoord / iResolution.xy;

// Output to screen as (r, g, b, alpha).
fragColor = vec4(uv.x, uv.y, 0.0, 1.0);

}
`

બ્લોક્સ

આ પ્લગિન 1 બ્લોક આપે છે.

  • Display WebGL Shader Display a WebGL fragment shader compatible with Shadertoy

સ્થાપન

  1. Upload the plugin files to the /wp-content/plugins/display-webgl-shader directory, or install the plugin through the WordPress plugins screen directly.
  2. Activate the plugin through the ‘Plugins’ screen in WordPress

સમીક્ષાઓ

આ પ્લગઇન માટે કોઈ સમીક્ષાઓ નથી.

ફાળો આપનાર & ડેવલપર્સ

આ ઓપન સોર્સ સોફ્ટવેર છે. નીચેના લોકો એ આ પ્લગિન માટે ફાળો આપ્યો છે.

ફાળો આપનારા

ચેન્જલૉગ

1.0.3

Fix missing rename from “WebGL Shader” to “Display WebGL Shader”.
Breaking change: The ID and CSS class on the canvas have been renamed.

1.0.2

Rename from “WebGL Shader” to “Display WebGL Shader”.

1.0.1

  • Minor updates so the plugin can be hosted on wordpress.org.

1.0.0

  • Release