diff options
author | Chia-I Wu <[email protected]> | 2014-09-25 13:22:19 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2014-09-26 21:15:55 +0800 |
commit | 362d2fb982069a2f7cef5b3355562ba2a6b38b85 (patch) | |
tree | a2febe9d9048c20264c960deea2d95351f282f07 /src/gallium/drivers/ilo/Makefile.sources | |
parent | f1662e3670c576fb2f1abe96e5855c80d22128f3 (diff) |
ilo: clean up draw and rectlist state emission
Add these new high-level functions
ilo_render_get_draw_dynamic_states_len()
ilo_render_emit_draw_dynamic_states()
ilo_render_get_rectlist_dynamic_states_len()
ilo_render_emit_rectlist_dynamic_states()
ilo_render_get_draw_surface_states_len()
ilo_render_emit_draw_surface_states()
for draw and rectlist state emission. They are implemented in the new
ilo_render_dynamic.c and ilo_render_surface.c.
Signed-off-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'src/gallium/drivers/ilo/Makefile.sources')
-rw-r--r-- | src/gallium/drivers/ilo/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/ilo/Makefile.sources b/src/gallium/drivers/ilo/Makefile.sources index 845b0231e0e..2bb81baf90d 100644 --- a/src/gallium/drivers/ilo/Makefile.sources +++ b/src/gallium/drivers/ilo/Makefile.sources @@ -37,9 +37,11 @@ C_SOURCES := \ ilo_render.c \ ilo_render.h \ ilo_render_gen.h \ + ilo_render_dynamic.c \ ilo_render_gen6.c \ ilo_render_gen7.c \ ilo_render_gen7.h \ + ilo_render_surface.c \ ilo_screen.c \ ilo_screen.h \ ilo_shader.c \ |