mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
Added libft and mlx
This commit is contained in:
parent
8448ae3a23
commit
82d06d234a
122 changed files with 10400 additions and 0 deletions
39
mlx/mlx_int_get_visual.c
Normal file
39
mlx/mlx_int_get_visual.c
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
** mlx_int_get_visual.c for MinilibX in
|
||||
**
|
||||
** Made by Charlie Root
|
||||
** Login <ol@epitech.net>
|
||||
**
|
||||
** Started on Wed Oct 3 17:01:51 2001 Charlie Root
|
||||
** Last update Thu Oct 4 15:00:45 2001 Charlie Root
|
||||
*/
|
||||
|
||||
|
||||
|
||||
#include "mlx_int.h"
|
||||
|
||||
|
||||
/*
|
||||
** We need a private colormap for non-default Visual.
|
||||
*/
|
||||
|
||||
|
||||
int mlx_int_get_visual(t_xvar *xvar)
|
||||
{
|
||||
XVisualInfo *vi;
|
||||
XVisualInfo template;
|
||||
int nb_item;
|
||||
|
||||
xvar->private_cmap = 0;
|
||||
xvar->visual = DefaultVisual(xvar->display,xvar->screen);
|
||||
if (xvar->visual->class == TrueColor)
|
||||
return (0);
|
||||
template.class = TrueColor;
|
||||
template.depth = xvar->depth;
|
||||
if (!(vi = XGetVisualInfo(xvar->display,VisualDepthMask|VisualClassMask,
|
||||
&template,&nb_item)) )
|
||||
return (-1);
|
||||
xvar->visual = vi->visual;
|
||||
xvar->private_cmap = 1;
|
||||
return (0);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue