2018-11-03 15:15:03 -04:00
|
|
|
//
|
|
|
|
// Shaders.metal
|
|
|
|
// Terrain2
|
|
|
|
//
|
|
|
|
// Created by Eryn Wells on 11/3/18.
|
|
|
|
// Copyright © 2018 Eryn Wells. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
// File for Metal kernel and shader functions
|
|
|
|
|
|
|
|
#include <metal_stdlib>
|
|
|
|
#include <simd/simd.h>
|
|
|
|
|
|
|
|
// Including header shared between this Metal shader code and Swift/C code executing Metal API commands
|
|
|
|
#import "ShaderTypes.h"
|
|
|
|
|
|
|
|
using namespace metal;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
float3 position [[attribute(VertexAttributePosition)]];
|
2018-11-10 21:46:32 -05:00
|
|
|
float3 normal [[attribute(VertexAttributeNormal)]];
|
2018-11-03 15:15:03 -04:00
|
|
|
float2 texCoord [[attribute(VertexAttributeTexcoord)]];
|
|
|
|
} Vertex;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
float4 position [[position]];
|
2018-11-10 21:46:32 -05:00
|
|
|
float3 normal;
|
2018-11-03 15:15:03 -04:00
|
|
|
float2 texCoord;
|
|
|
|
} ColorInOut;
|
|
|
|
|
|
|
|
vertex ColorInOut vertexShader(Vertex in [[stage_in]],
|
2018-11-04 08:25:01 -05:00
|
|
|
texture2d<float> heights [[texture(0)]],
|
2018-11-04 08:06:48 -05:00
|
|
|
constant Uniforms & uniforms [[buffer(BufferIndexUniforms)]])
|
2018-11-03 15:15:03 -04:00
|
|
|
{
|
2018-11-04 11:34:25 -05:00
|
|
|
constexpr sampler s(coord::normalized, address::clamp_to_zero, filter::linear);
|
2018-11-04 08:06:48 -05:00
|
|
|
|
2018-11-03 15:15:03 -04:00
|
|
|
ColorInOut out;
|
|
|
|
|
2018-11-04 11:34:25 -05:00
|
|
|
float4 height = heights.sample(s, in.texCoord);
|
2018-11-04 08:06:48 -05:00
|
|
|
|
2018-11-04 11:34:25 -05:00
|
|
|
// Replace the y coordinate with the height we read from the texture.
|
2018-11-04 08:25:01 -05:00
|
|
|
float4 position(in.position.x, height.r, in.position.z, 1.0);
|
2018-11-03 15:15:03 -04:00
|
|
|
out.position = uniforms.projectionMatrix * uniforms.modelViewMatrix * position;
|
2018-11-10 21:46:32 -05:00
|
|
|
out.normal = in.normal;
|
2018-11-03 15:15:03 -04:00
|
|
|
out.texCoord = in.texCoord;
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment float4 fragmentShader(ColorInOut in [[stage_in]],
|
|
|
|
constant Uniforms & uniforms [[ buffer(BufferIndexUniforms) ]],
|
|
|
|
texture2d<half> colorMap [[ texture(TextureIndexColor) ]])
|
|
|
|
{
|
|
|
|
constexpr sampler colorSampler(mip_filter::linear,
|
|
|
|
mag_filter::linear,
|
|
|
|
min_filter::linear);
|
|
|
|
|
|
|
|
half4 colorSample = colorMap.sample(colorSampler, in.texCoord.xy);
|
|
|
|
|
2018-11-04 11:34:25 -05:00
|
|
|
return float4(1.0);
|
2018-11-03 15:15:03 -04:00
|
|
|
}
|