layout (location = 0) out vec4 outColor;
layout(push_constant) uniform PushConstant{
mat4 mvp;
vec4 color;
};
void main() {
outColor = color;
}