momento/include/util.h

11 lines
248 B
C
Raw Permalink Normal View History

2021-04-30 02:16:11 +02:00
/* SPDX-License-Identifier: GPL-3.0-or-later */
/* Copyright (C) 2021 KikooDX */
#pragma once
/* collection of handy "math" functions */
float square(float x);
float isquare(float x);
float abs(float x);
int sign(float x);
2021-05-06 00:06:12 +02:00
void darken_vram(void);