42_so_long/mlx
mcolonna 42706ab8cc change, fix, .gitignore *
fix: warning gnu old-style field designator ext.
change: inner walls texture
dev: add *.o and *.a to .gitignore
2024-04-22 13:26:04 +02:00
..
man feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
test feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
configure feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
libmlx.a change, fix, .gitignore * 2024-04-22 13:26:04 +02:00
libmlx_Linux.a change, fix, .gitignore * 2024-04-22 13:26:04 +02:00
LICENSE feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
Makefile feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
Makefile.gen feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
Makefile.mk feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx.h feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_clear_window.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_destroy_display.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_destroy_image.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_destroy_window.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_expose_hook.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_ext_randr.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_flush_event.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_get_color_value.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_get_data_addr.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_hook.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_init.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_int.h feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_int_anti_resize_win.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_int_do_nothing.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_int_get_visual.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_int_param_event.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_int_set_win_event_mask.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_int_str_to_wordtab.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_int_wait_first_expose.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_key_hook.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_lib_xpm.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_loop.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_loop_hook.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_mouse.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_mouse_hook.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_new_image.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_new_window.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_pixel_put.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_put_image_to_window.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_rgb.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_screen_size.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_set_font.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_string_put.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_xpm.c feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
mlx_xpm.c.ok feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
README.md feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00
rgb2c.pl feat: base + display functions!!!!! 2024-03-06 16:19:34 +01:00

Build

This is the MinilibX, a simple X-Window (X11R6) programming API in C, designed for students, suitable for X-beginners.

Contents

  • source code in C to create the mlx library
  • man pages (in man/ directory)
  • a test program (in test/ directory) is built with the library
  • a public include file mlx.h
  • a tiny configure script to generate an appropriate Makefile.gen

Requirements for Linux

  • MinilibX only support TrueColor visual type (8,15,16,24 or 32 bits depth)
  • gcc
  • make
  • X11 include files (package xorg)
  • XShm extension must be present (package libxext-dev)
  • Utility functions from BSD systems - development files (package libbsd-dev)
  • e.g. sudo apt-get install gcc make xorg libxext-dev libbsd-dev (Debian/Ubuntu)

Requirements for MacOS

➜  ~ Brew install Xquartz
➜  ~ reboot
➜  ~ xeyes # run an hello world X11 app

MlX Color Opacity / Transparency / Alpha (32 bits depth)

  • 0xFF (fully transparent) or 0x00 (fully opaque)

Compile MinilibX

  • run ./configure or make both will make a few tests, create Makefile.gen and then automatically run make on this generated Makefile.gen . libmlx.a and libmlx_$(HOSTTYPE).a are created. test/mlx-test binary is also created.

Install MinilibX

  • no installation script is provided. You may want to install
    • libmlx.a and/or libmlx_$(HOSTTYPE).a in /usr/X11/lib or /usr/local/lib
    • mlx.h in /usr/X11/include or /usr/local/include
    • man/man3/mlx*.1 in /usr/X11/man/man3 or /usr/local/man/man3

Olivier CROUZET - 2014-01-06 -