Files
mcpe/platforms/ios/Shaders/Shader.fsh
2024-01-22 17:38:48 +02:00

15 lines
216 B
GLSL

//
// Shader.fsh
// minecraftpe
//
// Created by Brent on 10/12/23.
// Copyright (c) 2023 ReMinecraftPE. All rights reserved.
//
varying lowp vec4 colorVarying;
void main()
{
gl_FragColor = colorVarying;
}