mirror of
https://github.com/libretro/RetroArch
synced 2025-01-14 09:43:27 +00:00
0549223677
* remove var error in psl1ght input * (psl1ght) add modern_alpha_blend and modern_opaque rsx shaders * (psl1ght) add perf improvements to the rsx driver * add rsx gfx for psl1ght * (psl1ght) set rsx as a compatible video driver * Do xmb menu scaling for psl1ght * (psl1ght) update Makefile to use latest shaders and more UI menu options
16 lines
309 B
Plaintext
16 lines
309 B
Plaintext
void main
|
|
(
|
|
float2 texcoord,
|
|
float2 position,
|
|
float4 color,
|
|
uniform float4x4 modelViewProj,
|
|
out float4 oPosition : POSITION,
|
|
out float2 oTexCoord : TEXCOORD0,
|
|
out float4 oColor : COLOR
|
|
)
|
|
{
|
|
oPosition = mul(float4(position, 0.0, 1.0), modelViewProj);
|
|
oTexCoord = texcoord;
|
|
oColor = color;
|
|
}
|