mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 14:43:34 +00:00
๐ fix: change github links to reflect organisation change
Signed-off-by: xtrm <oss@xtrm.me>
This commit is contained in:
10
README.md
10
README.md
@@ -1,12 +1,12 @@
|
|||||||
<div align="center">
|
<div align="center">
|
||||||
<img src="./res/logo.png" alt="drawing" width="200"/>
|
<img src="./res/logo.png" alt="drawing" width="200"/>
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<a href="https://github.com/420verfl0w/MacroLibX/actions/workflows/linux_clang.yml"><img src="https://github.com/420verfl0w/MacroLibX/actions/workflows/linux_clang.yml/badge.svg"></a>
|
<a href="https://github.com/seekrs/MacroLibX/actions/workflows/linux_clang.yml"><img src="https://github.com/seekrs/MacroLibX/actions/workflows/linux_clang.yml/badge.svg"></a>
|
||||||
<a href="https://github.com/420verfl0w/MacroLibX/actions/workflows/linux_gcc.yml"><img src="https://github.com/420verfl0w/MacroLibX/actions/workflows/linux_gcc.yml/badge.svg"></a>
|
<a href="https://github.com/seekrs/MacroLibX/actions/workflows/linux_gcc.yml"><img src="https://github.com/seekrs/MacroLibX/actions/workflows/linux_gcc.yml/badge.svg"></a>
|
||||||
<a href="https://github.com/420verfl0w/MacroLibX/actions/workflows/macos_x86.yml"><img src="https://github.com/420verfl0w/MacroLibX/actions/workflows/macos_x86.yml/badge.svg"></a>
|
<a href="https://github.com/seekrs/MacroLibX/actions/workflows/macos_x86.yml"><img src="https://github.com/seekrs/MacroLibX/actions/workflows/macos_x86.yml/badge.svg"></a>
|
||||||
</div>
|
</div>
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<a href="https://github.com/420verfl0w/MacroLibX/actions/workflows/windows.yml"><img src="https://github.com/420verfl0w/MacroLibX/actions/workflows/windows.yml/badge.svg"></a>
|
<a href="https://github.com/seekrs/MacroLibX/actions/workflows/windows.yml"><img src="https://github.com/seekrs/MacroLibX/actions/workflows/windows.yml/badge.svg"></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -65,7 +65,7 @@ To build on Windows you may need to use the [xmake](https://xmake.io) build. [He
|
|||||||
### Clone and Build
|
### Clone and Build
|
||||||
Finally, you can clone the Git repository. When inside it, run the GNU `make` command to compile MacroLibX.
|
Finally, you can clone the Git repository. When inside it, run the GNU `make` command to compile MacroLibX.
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/420verfl0w/MacroLibX.git
|
git clone https://github.com/seekrs/MacroLibX.git
|
||||||
cd MacroLibX
|
cd MacroLibX
|
||||||
make
|
make
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -6,11 +6,11 @@
|
|||||||
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
|
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
|
||||||
/* +#+#+#+#+#+ +#+ */
|
/* +#+#+#+#+#+ +#+ */
|
||||||
/* Created: 2022/10/04 16:56:35 by maldavid #+# #+# */
|
/* Created: 2022/10/04 16:56:35 by maldavid #+# #+# */
|
||||||
/* Updated: 2023/12/14 16:27:44 by maldavid ### ########.fr */
|
/* Updated: 2023/12/20 00:57:15 by kiroussa ### ########.fr */
|
||||||
/* */
|
/* */
|
||||||
/* ************************************************************************** */
|
/* ************************************************************************** */
|
||||||
|
|
||||||
// MacroLibX official repo https://github.com/420verfl0w/MacroLibX
|
// MacroLibX official repo https://github.com/seekrs/MacroLibX
|
||||||
|
|
||||||
#ifndef __MACRO_LIB_X_H__
|
#ifndef __MACRO_LIB_X_H__
|
||||||
#define __MACRO_LIB_X_H__
|
#define __MACRO_LIB_X_H__
|
||||||
@@ -173,7 +173,7 @@ MLX_API void* mlx_new_image(void* mlx, int width, int height);
|
|||||||
* /!\ If you run into glitches when writing or reading pixels from images /!\
|
* /!\ If you run into glitches when writing or reading pixels from images /!\
|
||||||
* You need to add IMAGES_OPTIMIZED=false to your make mlx command
|
* You need to add IMAGES_OPTIMIZED=false to your make mlx command
|
||||||
* ```
|
* ```
|
||||||
* ~ git clone https://github.com/420verfl0w/MacroLibX.git
|
* ~ git clone https://github.com/seekrs/MacroLibX.git
|
||||||
* ~ cd MacroLibX
|
* ~ cd MacroLibX
|
||||||
* ~ make IMAGES_OPTIMIZED=false
|
* ~ make IMAGES_OPTIMIZED=false
|
||||||
* ```
|
* ```
|
||||||
@@ -194,7 +194,7 @@ MLX_API int mlx_get_image_pixel(void* mlx, void* img, int x, int y);
|
|||||||
* /!\ If you run into glitches when writing or reading pixels from images /!\
|
* /!\ If you run into glitches when writing or reading pixels from images /!\
|
||||||
* You need to add IMAGES_OPTIMIZED=false to your make mlx command
|
* You need to add IMAGES_OPTIMIZED=false to your make mlx command
|
||||||
* ```
|
* ```
|
||||||
* ~ git clone https://github.com/420verfl0w/MacroLibX.git
|
* ~ git clone https://github.com/seekrs/MacroLibX.git
|
||||||
* ~ cd MacroLibX
|
* ~ cd MacroLibX
|
||||||
* ~ make IMAGES_OPTIMIZED=false
|
* ~ make IMAGES_OPTIMIZED=false
|
||||||
* ```
|
* ```
|
||||||
|
|||||||
Reference in New Issue
Block a user