view shaders/extra_window.v.glsl @ 2502:ad50530a7c27

Partially functional asr/asl implementations in new 68K core
author Michael Pavone <pavone@retrodev.com>
date Tue, 16 Jul 2024 20:21:08 -0700
parents a0837ea61fda
children aa888682faa0
line wrap: on
line source


attribute vec2 pos;
attribute vec2 uv;
varying mediump vec2 texcoord;
uniform mediump float width, height;

void main()
{
	gl_Position = vec4(pos, 0.0, 1.0);
	texcoord = uv;
}