diff options
author | Eric Anholt <[email protected]> | 2016-10-26 10:14:37 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2017-06-30 12:25:45 -0700 |
commit | 7f80a9ff1312406dcffae88bf6dcaaf99ca9e3a1 (patch) | |
tree | b0de421d08cd0f3ee42f2a3e48c702f73772fefb /src/gallium/drivers/vc4/Android.mk | |
parent | 6646f6ba0dca70478cafd39886005e387406f114 (diff) |
vc4: Introduce XML-based packet header generation like Intel's.
I really liked this idea, as it should help with management of packet
parsing tools like the CL dump. The python script is forked off of theirs
because our packets are byte-based instead of dwords, and the changes to
do so while avoiding performance regressions due to unaligned accesses
were quite invasive.
v2: Fix Android.mk paths, drop shebang for python script, fix overlap
detection.
Acked-by: Jason Ekstrand <[email protected]>
Acked-by: Kenneth Graunke <[email protected]>
Tested-by: Rob Herring <[email protected]>
Diffstat (limited to 'src/gallium/drivers/vc4/Android.mk')
-rw-r--r-- | src/gallium/drivers/vc4/Android.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc4/Android.mk b/src/gallium/drivers/vc4/Android.mk index 715c021afb8..f7541385958 100644 --- a/src/gallium/drivers/vc4/Android.mk +++ b/src/gallium/drivers/vc4/Android.mk @@ -31,7 +31,10 @@ LOCAL_SRC_FILES := \ LOCAL_GENERATED_SOURCES := $(MESA_GEN_NIR_H) # We need libmesa_nir to get NIR's generated include directories. -LOCAL_STATIC_LIBRARIES := libmesa_nir +LOCAL_STATIC_LIBRARIES := \ + libmesa_nir \ + libmesa_broadcom_genxml + LOCAL_MODULE := libmesa_pipe_vc4 include $(GALLIUM_COMMON_MK) |