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.

SConscript 299B

12345678910111213141516171819
  1. Import('*')
  2. util = env.ConvenienceLibrary(
  3. target = 'util',
  4. source = [
  5. 'p_debug.c',
  6. 'p_tile.c',
  7. 'p_util.c',
  8. 'u_blit.c',
  9. 'u_draw_quad.c',
  10. 'u_gen_mipmap.c',
  11. 'u_handle_table.c',
  12. 'u_hash_table.c',
  13. 'u_mm.c',
  14. 'u_simple_shaders.c',
  15. 'u_snprintf.c',
  16. ])
  17. auxiliaries.insert(0, util)