diff options
author | Erico Nunes <[email protected]> | 2019-11-12 14:56:33 +0100 |
---|---|---|
committer | Erico Nunes <[email protected]> | 2019-12-14 07:44:43 +0100 |
commit | 6d46d0e82b5214120aaa4d600e9fa0a502050c56 (patch) | |
tree | c07331b6084cd44b90c71827acb43a09c5f8915a /src/gallium/auxiliary/meson.build | |
parent | 2d7be5f01f003855fce8dffdbd9ee17c60b134b3 (diff) |
vc4: move the draw splitting routine to shared code
This can also be useful for other hardware which has similar limitations
on vertex count per single draw.
The Mali400 has a similar limitation and can reuse this.
Signed-off-by: Erico Nunes <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/2445>
Diffstat (limited to 'src/gallium/auxiliary/meson.build')
-rw-r--r-- | src/gallium/auxiliary/meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/meson.build b/src/gallium/auxiliary/meson.build index 65e4eda87ef..d9e91216211 100644 --- a/src/gallium/auxiliary/meson.build +++ b/src/gallium/auxiliary/meson.build @@ -305,6 +305,8 @@ files_libgallium = files( 'util/u_screen.h', 'util/u_simple_shaders.c', 'util/u_simple_shaders.h', + 'util/u_split_draw.c', + 'util/u_split_draw.h', 'util/u_split_prim.h', 'util/u_sse.h', 'util/u_suballoc.c', |