Clone of mesa.
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.

imports.h 149B

123456
  1. #include <assert.h>
  2. #include <stdlib.h>
  3. #define _mesa_malloc(x) malloc(x)
  4. #define _mesa_free(x) free(x)
  5. #define _mesa_calloc(x) calloc(1,x)