mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 19:36:43 +03:00
15 lines
216 B
GLSL
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;
|
|
}
|