Available since LÖVE 0.9.0
It has been renamed from love.graphics.newPixelEffect.
This function can be slow if it is called repeatedly, such as from love.update or love.draw. If you need to use a specific resource often, create it once and store it somewhere it can be reused!
Creates a new Shader object for hardware-accelerated vertex and pixel effects. A Shader contains either vertex shader code, pixel shader code, or both.
Shaders are small programs which are run on the video card when drawing. Vertex shaders are run once for each vertex (for example, an image has 4 vertices - one at each corner. A Mesh might have many more.) Pixel shaders are run once for each pixel on the screen which the drawn object touches. Pixel shader code is executed after all the object's vertices have been processed by the vertex shader.
shader = love.graphics.newShader( code )
string code
Shader shader
shader = love.graphics.newShader( pixelcode, vertexcode )
string pixelcode
string vertexcode
Shader shader
The pixelcode and vertexcode arguments can be in any order.
Shaders are not programmed in Lua, but by using a special shader language instead. The shader language is basically GLSL 1.20 (specs) with a few aliases added for existing types:
GLSL | LÖVE shader language |
---|---|
float | number |
sampler2D | Image |
uniform | extern |
texture2D(tex, uv) | Texel(tex, uv) |
Vertex shader code must contain at least one function, named position
, which is the function that will produce transformed vertex positions of drawn objects in screen-space.
Pixel shader code must contain at least one function, named effect
, which is the function that will produce the color which is blended onto the screen for each pixel a drawn object touches.
Additionally, LÖVE exposes a function VideoTexel(uv)
which yields the color value of the currently drawn video at that position. Since Videos are drawn as YUV data, in multiple textures, and then converted in the shader, the Texel function cannot be used.
When an object is drawn, the pixel shader effect
function is called hundreds or thousands of times: once for each pixel on the screen that the object touches. The pixel shader is run after the vertex shader, if there is one.
vec4 effect( vec4 color, Image texture, vec2 texture_coords, vec2 screen_coords )
vec4 color
Image texture
vec2 texture_coords
vec2 screen_coords
vec4 output_color
If no pixel shader is used, LÖVE internally uses a default. This is its code:
vec4 effect(vec4 color, Image texture, vec2 texture_coords, vec2 screen_coords) { vec4 texturecolor = Texel(texture, texture_coords); return texturecolor * color; }
Or for Video
vec4 effect(vec4 color, Image texture, vec2 texture_coords, vec2 screen_coords) { vec4 texturecolor = VideoTexel(texture_coords); return texturecolor * color; }
If multiple canvases are being rendered to simultaneously (by giving multiple Canvas parameters to love.graphics.setCanvas), you can use the effects function instead of effect in order to output a separate color to each Canvas. It has the following prototype:
void effects(vec4 color, Image texture, vec2 texture_coords, vec2 screen_coords) { // love_Canvases is a writable array of vec4 colors. Each index corresponds to a Canvas. If you don't assign a value to all active canvases, bad things might happen. love_Canvases[0] = color; love_Canvases[1] = color + vec4(0.5); // etc. }
vec4 position( mat4 transform_projection, vec4 vertex_position )
mat4 transform_projection
vec4 vertex_position
vec4 output_pos
If no vertex shader code is used, LÖVE uses a default. This is its code:
vec4 position(mat4 transform_projection, vec4 vertex_position) { // The order of operations matters when doing matrix multiplication. return transform_projection * vertex_position; }
Vertex shader code is run for every vertex drawn to the screen (for example, love.graphics.rectangle will produce 4 vertices) and is used to transform the vertex positions from their original coordinates into screen-space, as well as to send information such as per-vertex color and texture coordinate values to the pixel shader.
Pixel shader code is run for every pixel on the screen that a drawn object touches, and is used to produce the color that will be blended onto the screen at that pixel, often by reading from an image. Pixel shaders are sometimes called fragment shaders.
The varying
keyword can be used to set a value in the vertex shader and have it interpolated in between vertices and passed down to the pixel shader.
Vertex and Pixel shader code can be combined into one file or string if you wrap the vertex-specific code in #ifdef VERTEX .. #endif
and the pixel-specific code in #ifdef PIXEL .. #endif
.
LÖVE provides several built-in variables for both pixel and vertex shaders. The full list can be found here: Shader Variables.
function love.load() local pixelcode = [[ vec4 effect( vec4 color, Image texture, vec2 texture_coords, vec2 screen_coords ) { vec4 texcolor = Texel(texture, texture_coords); return texcolor * color; } ]] local vertexcode = [[ vec4 position( mat4 transform_projection, vec4 vertex_position ) { return transform_projection * vertex_position; } ]] shader = love.graphics.newShader(pixelcode, vertexcode) end function love.draw() love.graphics.setShader(shader) -- draw things love.graphics.setShader() -- draw more things end
varying vec4 vpos; vec4 position( mat4 transform_projection, vec4 vertex_position ) { vpos = vertex_position; return transform_projection * vertex_position; }
varying vec4 vpos; vec4 effect( vec4 color, Image texture, vec2 texture_coords, vec2 screen_coords ) { texture_coords += vec2(cos(vpos.x), sin(vpos.y)); vec4 texcolor = Texel(texture, texture_coords); return texcolor * color; }
varying vec4 vpos; #ifdef VERTEX vec4 position( mat4 transform_projection, vec4 vertex_position ) { vpos = vertex_position; return transform_projection * vertex_position; } #endif #ifdef PIXEL vec4 effect( vec4 color, Image texture, vec2 texture_coords, vec2 screen_coords ) { texture_coords += vec2(cos(vpos.x), sin(vpos.y)); vec4 texcolor = Texel(texture, texture_coords); return texcolor * color; } #endif
© 2006–2016 LÖVE Development Team
Licensed under the GNU Free Documentation License, Version 1.3.
https://love2d.org/wiki/love.graphics.newShader