Indev
This commit is contained in:
kbz_8
2024-01-09 01:42:36 +01:00
committed by GitHub
6 changed files with 7 additions and 6 deletions

View File

@@ -1,5 +1,9 @@
#!/bin/bash
if [ -e a.out ]; then
rm a.out
fi
if [ $(uname -s) = 'Darwin' ]; then
clang main.c ../libmlx.dylib -L /opt/homebrew/lib -lSDL2 -g;
else

View File

@@ -352,8 +352,8 @@ MLX_API int mlx_destroy_display(void* mlx);
* @brief Get screen size
*
* @param mlx Internal MLX application
* @param x Get X size
* @param y Get Y size
* @param w Get width size
* @param h Get height size
*
* @return (int) Always return 0, made this to copy the behaviour of the original MLX
*/

View File

@@ -13,7 +13,6 @@
#include <core/memory.h>
#include <core/errors.h>
#include <algorithm>
#include <stdlib.h>
namespace mlx
{

View File

@@ -6,7 +6,7 @@
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/05 16:27:35 by maldavid #+# #+# */
/* Updated: 2023/12/11 19:47:20 by kbz_8 ### ########.fr */
/* Updated: 2023/12/11 19:47:20 by vavaas ### ########.fr */
/* */
/* ************************************************************************** */

View File

@@ -10,7 +10,6 @@
/* */
/* ************************************************************************** */
#include <mutex>
#include <renderer/renderer.h>
#include <renderer/images/texture.h>
#include <renderer/core/render_core.h>

View File

@@ -13,7 +13,6 @@
#ifndef __RENDERER__
#define __RENDERER__
#include <array>
#include <vector>
#include <memory>