mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 02:58:05 +02:00
anv/entrypoints: Add dispatch support for haswell
This commit is contained in:
parent
aa3002bd42
commit
92d164b1c3
1 changed files with 5 additions and 1 deletions
|
|
@ -96,6 +96,7 @@ if opt_header:
|
|||
for type, name, args, num, h in entrypoints:
|
||||
print "%s anv_%s%s;" % (type, name, args)
|
||||
print "%s gen7_%s%s;" % (type, name, args)
|
||||
print "%s gen75_%s%s;" % (type, name, args)
|
||||
print "%s gen8_%s%s;" % (type, name, args)
|
||||
print "%s anv_validate_%s%s;" % (type, name, args)
|
||||
exit()
|
||||
|
|
@ -163,7 +164,7 @@ for type, name, args, num, h in entrypoints:
|
|||
print " { %5d, 0x%08x }," % (offsets[num], h)
|
||||
print "};\n"
|
||||
|
||||
for layer in [ "anv", "validate", "gen7", "gen8" ]:
|
||||
for layer in [ "anv", "validate", "gen7", "gen75", "gen8" ]:
|
||||
for type, name, args, num, h in entrypoints:
|
||||
print "%s %s_%s%s __attribute__ ((weak));" % (type, layer, name, args)
|
||||
print "\nconst struct anv_dispatch_table %s_layer = {" % layer
|
||||
|
|
@ -218,6 +219,9 @@ anv_resolve_entrypoint(uint32_t index)
|
|||
return gen8_layer.entrypoints[index];
|
||||
/* fall through */
|
||||
case 7:
|
||||
if (dispatch_devinfo->is_haswell && gen75_layer.entrypoints[index])
|
||||
return gen75_layer.entrypoints[index];
|
||||
|
||||
if (gen7_layer.entrypoints[index])
|
||||
return gen7_layer.entrypoints[index];
|
||||
/* fall through */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue