WebGL Simple 2D Example 5

Draw at pixel positions.

Full JavaScript code on this page: (or you can View Page Source)

var gl, canvas, vertices = []

function drawTriangle(x1, y1, x2, y2, x3, y3, r, g, b, a) {
	// All 3 points of the triangle get the same rgb.
	vertices.push(
		x1, y1, r, g, b, a,
		x2, y2, r, g, b, a,
		x3, y3, r, g, b, a
	)
}

function gameLoop() {
	window.requestAnimationFrame(gameLoop)

	// Clear the screen.
	gl.clear(gl.COLOR_BUFFER_BIT)

// UPDATE: Changed to pixel positions. // Draw the moving triangle. drawTriangle( 250+Math.sin(Date.now()*.004)*250, 100, 150, 400, 350, 400, 0, 255, 128 + Math.floor(Math.sin(Date.now()*.01) * 127), 1 )
// Tell webGL to draw these triangle this frame. gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(vertices), gl.STATIC_DRAW) // Draw all the triangles. gl.drawArrays(gl.TRIANGLES, 0, vertices.length/6) // Clear vertices. We will fill it every frame. // This way you don't need to delete objects from the screen. You just stop drawing them. vertices = [] } function glSetup() { canvas = document.getElementById("myCanvas") gl = canvas.getContext("experimental-webgl") // Set the viewport size to be the whole canvas. gl.viewport(0, 0, canvas.width, canvas.height) // Set the background color to sky blue. gl.clearColor(.5, .7, 1, 1) // Tell webGL that we aren't doing anything special with the vertex buffer, just use a default one. gl.bindBuffer(gl.ARRAY_BUFFER, gl.createBuffer()) // Vertex shader source code. var vertCode = "attribute vec2 coordinates;" + "attribute vec4 rgba;" + "varying highp vec4 rgbaForFrag;" + "void main(void) {" +
// UPDATE: Divide the position by 500 (our canvas size) " vec2 drawPos;" + " drawPos = coordinates / 500.0 * 2.0;" +
// UPDATE: Subtract the Y so that positive Y is downward like in 2D screens. // We are passing in only 2D coordinates. Then Z is always 0.0 and the divisor is always 1.0 " gl_Position = vec4(drawPos.x - 1.0, 1.0 - drawPos.y, 0.0, 1.0);" +
// Pass the color and transparency to the fragment shader. " rgbaForFrag = vec4(rgba.xyz / 255.0, rgba.w);" + "}" // Create a vertex shader object. var vertShader = gl.createShader(gl.VERTEX_SHADER) gl.shaderSource(vertShader, vertCode) gl.compileShader(vertShader) // Fragment shader source code. var fragCode = "varying highp vec4 rgbaForFrag;" + "void main(void) {" + " gl_FragColor = rgbaForFrag;" + "}" // Create fragment shader object. var fragShader = gl.createShader(gl.FRAGMENT_SHADER) gl.shaderSource(fragShader, fragCode) gl.compileShader(fragShader) // Tell webGL to use both my shaders. var shaderProgram = gl.createProgram() gl.attachShader(shaderProgram, vertShader) gl.attachShader(shaderProgram, fragShader) gl.linkProgram(shaderProgram) gl.useProgram(shaderProgram) // Tell webGL to read 2 floats from the vertex array for each vertex // and store them in my vec2 shader variable I've named "coordinates" // We need to tell it that each vertex takes 24 bytes now (6 floats) var attribute = gl.getAttribLocation(shaderProgram, "coordinates") gl.vertexAttribPointer(attribute, 2, gl.FLOAT, false, 24, 0) gl.enableVertexAttribArray(attribute) // Tell webGL to read 4 floats from the vertex array for each vertex // and store them in my vec4 shader variable I've named "rgba" // Start after 8 bytes. (After the 2 floats for x and y) var attribute = gl.getAttribLocation(shaderProgram, "rgba") gl.vertexAttribPointer(attribute, 4, gl.FLOAT, false, 24, 8) gl.enableVertexAttribArray(attribute) // Tell webGL that when we set the opacity, it should be semi transparent above what was already drawn. gl.blendFunc(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA) gl.enable(gl.BLEND) } window.onload = function() { glSetup() gameLoop() }
HTML:
					
Step 6 - Use Uniform Canvas Size »