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.
23 lines
461 B
23 lines
461 B
/*
|
|
** mlx_get_data_addr.c for MiniLibX in raytraceur
|
|
**
|
|
** Made by Charlie Root
|
|
** Login <ol@epitech.net>
|
|
**
|
|
** Started on Mon Aug 14 15:45:57 2000 Charlie Root
|
|
** Last update Thu Sep 27 19:05:25 2001 Charlie Root
|
|
*/
|
|
|
|
|
|
|
|
#include "mlx_int.h"
|
|
|
|
|
|
char *mlx_get_data_addr(t_img *img,int *bits_per_pixel,
|
|
int *size_line,int *endian)
|
|
{
|
|
*bits_per_pixel = img->bpp;
|
|
*size_line = img->size_line;
|
|
*endian = img->image->byte_order;
|
|
return (img->data);
|
|
}
|
|
|