i965/vec4/tcs: Return NULL instead of false in brw_compile_tcs()
authorEduardo Lima Mitev <elima@igalia.com>
Thu, 21 Jan 2016 16:45:18 +0000 (17:45 +0100)
committerKenneth Graunke <kenneth@whitecape.org>
Fri, 22 Jan 2016 00:16:26 +0000 (16:16 -0800)
brw_compile_tcs() is expected to return 'const unsigned *', so the compiler
complains.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_vec4_tcs.cpp

index fb6ca8ee5f9f2718eefbc5f1195a8efd6307aaba..9b75f45edb02f217281ebeefd9f9d841b2a92fe7 100644 (file)
@@ -546,7 +546,7 @@ brw_compile_tcs(const struct brw_compiler *compiler,
 
    assert(output_size_bytes >= 1);
    if (output_size_bytes > GEN7_MAX_HS_URB_ENTRY_SIZE_BYTES)
-      return false;
+      return NULL;
 
    /* URB entry sizes are stored as a multiple of 64 bytes. */
    vue_prog_data->urb_entry_size = ALIGN(output_size_bytes, 64) / 64;