You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
narnaud 72f09acc43 README and getline start 3 years ago
..
.github/workflows README and getline start 3 years ago
man README and getline start 3 years ago
test README and getline start 3 years ago
.gitignore README and getline start 3 years ago
LICENSE README and getline start 3 years ago
Makefile README and getline start 3 years ago
Makefile.mk README and getline start 3 years ago
README.md README and getline start 3 years ago
configure README and getline start 3 years ago
mlx.h README and getline start 3 years ago
mlx_clear_window.c README and getline start 3 years ago
mlx_destroy_display.c README and getline start 3 years ago
mlx_destroy_image.c README and getline start 3 years ago
mlx_destroy_window.c README and getline start 3 years ago
mlx_expose_hook.c README and getline start 3 years ago
mlx_ext_randr.c README and getline start 3 years ago
mlx_flush_event.c README and getline start 3 years ago
mlx_get_color_value.c README and getline start 3 years ago
mlx_get_data_addr.c README and getline start 3 years ago
mlx_hook.c README and getline start 3 years ago
mlx_init.c README and getline start 3 years ago
mlx_int.h README and getline start 3 years ago
mlx_int_anti_resize_win.c README and getline start 3 years ago
mlx_int_do_nothing.c README and getline start 3 years ago
mlx_int_get_visual.c README and getline start 3 years ago
mlx_int_param_event.c README and getline start 3 years ago
mlx_int_set_win_event_mask.c README and getline start 3 years ago
mlx_int_str_to_wordtab.c README and getline start 3 years ago
mlx_int_wait_first_expose.c README and getline start 3 years ago
mlx_key_hook.c README and getline start 3 years ago
mlx_lib_xpm.c README and getline start 3 years ago
mlx_loop.c README and getline start 3 years ago
mlx_loop_hook.c README and getline start 3 years ago
mlx_mouse.c README and getline start 3 years ago
mlx_mouse_hook.c README and getline start 3 years ago
mlx_new_image.c README and getline start 3 years ago
mlx_new_window.c README and getline start 3 years ago
mlx_pixel_put.c README and getline start 3 years ago
mlx_put_image_to_window.c README and getline start 3 years ago
mlx_rgb.c README and getline start 3 years ago
mlx_screen_size.c README and getline start 3 years ago
mlx_set_font.c README and getline start 3 years ago
mlx_string_put.c README and getline start 3 years ago
mlx_xpm.c README and getline start 3 years ago
mlx_xpm.c.ok README and getline start 3 years ago
rgb2c.pl README and getline start 3 years ago

README.md

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 -