yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

Ellie Hermaszewskaformatf65d756bf

master
135 B14 linesraw
1#pragma once
2
3#include "c.h"
4
5#ifdef B_H
6#error "Shouldn't be included twice"
7#endif
8
9#define B_H
10
11float foo(float x)
12{
13    return x;
14}