Sha256: 1297f94e21255e21ff3d8982ac190f40bee213ffb155f6099cebc9c751bf946c

Contents?: true

Size: 229 Bytes

Versions: 64

Compression:

Stored size: 229 Bytes

Contents

#version 330 core

uniform mat4 worldMatrix;

layout(location = 0) in vec2 position;
layout(location = 1) in vec4 color;

out vec4 vertexColor;

void main()
{
    vertexColor = color;
    gl_Position = vec4(position, 0.0, 1.0);
}

Version data entries

64 entries across 62 versions & 9 rubygems

Version Path
rouge-1.10.0 lib/rouge/demos/glsl
gitlab-rouge-1.9.2 lib/rouge/demos/glsl
rouge-1.9.1 lib/rouge/demos/glsl
rouge-1.9.0 lib/rouge/demos/glsl