Move nv30, nv50 and nvc0 to nouveau

Graphics / Mesa 3D Graphics Library / Mesa - Johannes Obermayr [gmx.de] - 11 September 2013 14:47 UTC

It is planned to ship openSUSE 13.1 with -shared libs. nouveau.la, nv30.la, nv50.la and nvc0.la are currently LIBADDs in all nouveau related targets. This change makes it possible to easily build one shared libnouveau.so which is then LIBADDed. Also dlopen will be faster for one library instead of three and build time on
-jX will be reduced.

Whitespace fixes were requested by 'git am'.

5eb7ff1 Move nv30, nv50 and nvc0 to nouveau.
configure.ac | 5 +-
src/gallium/Android.mk | 5 +-
src/gallium/drivers/Makefile.am | 2 +-
src/gallium/drivers/nouveau/Android.mk | 8 +-
src/gallium/drivers/nouveau/Makefile.am | 14 +-
src/gallium/drivers/nouveau/Makefile.sources | 91 +
src/gallium/drivers/nouveau/codegen/nv50_ir.cpp | 1231 ++++++++
src/gallium/drivers/nouveau/codegen/nv50_ir.h | 1197 ++++++++
src/gallium/drivers/nouveau/codegen/nv50_ir_bb.cpp | 550 ++++
.../drivers/nouveau/codegen/nv50_ir_build_util.cpp | 614 ++++
.../drivers/nouveau/codegen/nv50_ir_build_util.h | 324 +++
.../drivers/nouveau/codegen/nv50_ir_driver.h | 220 ++
.../drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp | 1682 +++++++++++
.../drivers/nouveau/codegen/nv50_ir_emit_nv50.cpp | 1962 +++++++++++++
.../drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp | 2988 ++++++++++++++++++++
.../drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp | 2852 +++++++++++++++++++
.../drivers/nouveau/codegen/nv50_ir_graph.cpp | 436 +++
.../drivers/nouveau/codegen/nv50_ir_graph.h | 228 ++
.../drivers/nouveau/codegen/nv50_ir_inlines.h | 420 +++
.../nouveau/codegen/nv50_ir_lowering_nv50.cpp | 1101 ++++++++
.../nouveau/codegen/nv50_ir_lowering_nvc0.cpp | 1597 +++++++++++
.../drivers/nouveau/codegen/nv50_ir_peephole.cpp | 2464 ++++++++++++++++
.../drivers/nouveau/codegen/nv50_ir_print.cpp | 698 +++++
src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp | 2050 ++++++++++++++
.../drivers/nouveau/codegen/nv50_ir_ssa.cpp | 552 ++++
.../drivers/nouveau/codegen/nv50_ir_target.cpp | 469 +++
.../drivers/nouveau/codegen/nv50_ir_target.h | 235 ++
.../nouveau/codegen/nv50_ir_target_nv50.cpp | 552 ++++
.../drivers/nouveau/codegen/nv50_ir_target_nv50.h | 72 +
.../nouveau/codegen/nv50_ir_target_nvc0.cpp | 604 ++++
.../drivers/nouveau/codegen/nv50_ir_target_nvc0.h | 74 +
.../drivers/nouveau/codegen/nv50_ir_util.cpp | 390 +++
src/gallium/drivers/nouveau/codegen/nv50_ir_util.h | 788 ++++++
.../drivers/nouveau/codegen/target_lib_nvc0.asm | 96 +
.../drivers/nouveau/codegen/target_lib_nvc0.asm.h | 112 +
.../drivers/nouveau/codegen/target_lib_nve4.asm | 698 +++++
.../drivers/nouveau/codegen/target_lib_nve4.asm.h | 592 ++++
.../drivers/nouveau/codegen/target_lib_nvf0.asm.h | 13 +
src/gallium/drivers/nouveau/nouveau_mm.c | 1 -
src/gallium/drivers/nouveau/nouveau_screen.c | 4 +-
src/gallium/drivers/nouveau/nouveau_video.c | 2 +-
src/gallium/drivers/nouveau/nv30/nv01_2d.xml.h | 1416 ++++++++++
src/gallium/drivers/nouveau/nv30/nv30-40_3d.xml.h | 2045 ++++++++++++++
src/gallium/drivers/nouveau/nv30/nv30_clear.c | 226 ++
src/gallium/drivers/nouveau/nv30/nv30_context.c | 263 ++
src/gallium/drivers/nouveau/nv30/nv30_context.h | 237 ++
src/gallium/drivers/nouveau/nv30/nv30_draw.c | 506 ++++
src/gallium/drivers/nouveau/nv30/nv30_format.c | 259 ++
src/gallium/drivers/nouveau/nv30/nv30_format.h | 57 +
src/gallium/drivers/nouveau/nv30/nv30_fragprog.c | 170 ++
src/gallium/drivers/nouveau/nv30/nv30_fragtex.c | 202 ++
src/gallium/drivers/nouveau/nv30/nv30_miptree.c | 490 ++++
src/gallium/drivers/nouveau/nv30/nv30_push.c | 290 ++
src/gallium/drivers/nouveau/nv30/nv30_query.c | 274 ++
src/gallium/drivers/nouveau/nv30/nv30_resource.c | 77 +
src/gallium/drivers/nouveau/nv30/nv30_resource.h | 75 +
src/gallium/drivers/nouveau/nv30/nv30_screen.c | 588 ++++
src/gallium/drivers/nouveau/nv30/nv30_screen.h | 51 +
src/gallium/drivers/nouveau/nv30/nv30_state.c | 458 +++
src/gallium/drivers/nouveau/nv30/nv30_state.h | 144 +
.../drivers/nouveau/nv30/nv30_state_validate.c | 538 ++++
src/gallium/drivers/nouveau/nv30/nv30_texture.c | 306 ++
src/gallium/drivers/nouveau/nv30/nv30_transfer.c | 754 +++++
src/gallium/drivers/nouveau/nv30/nv30_transfer.h | 40 +
src/gallium/drivers/nouveau/nv30/nv30_vbo.c | 627 ++++
src/gallium/drivers/nouveau/nv30/nv30_vertprog.c | 258 ++
src/gallium/drivers/nouveau/nv30/nv30_vertprog.h | 176 ++
src/gallium/drivers/nouveau/nv30/nv30_winsys.h | 158 ++
src/gallium/drivers/nouveau/nv30/nv40_vertprog.h | 178 ++
src/gallium/drivers/nouveau/nv30/nv40_verttex.c | 100 +
src/gallium/drivers/nouveau/nv30/nvfx_fragprog.c | 1251 ++++++++
src/gallium/drivers/nouveau/nv30/nvfx_shader.h | 525 ++++
src/gallium/drivers/nouveau/nv30/nvfx_vertprog.c | 1133 ++++++++
src/gallium/drivers/nouveau/nv50/nv50_2d.xml.h | 416 +++
src/gallium/drivers/nouveau/nv50/nv50_3d.xml.h | 2110 ++++++++++++++
src/gallium/drivers/nouveau/nv50/nv50_3ddefs.xml.h | 98 +
src/gallium/drivers/nouveau/nv50/nv50_blit.h | 223 ++
src/gallium/drivers/nouveau/nv50/nv50_context.c | 317 +++
src/gallium/drivers/nouveau/nv50/nv50_context.h | 322 +++
src/gallium/drivers/nouveau/nv50/nv50_debug.h | 25 +
src/gallium/drivers/nouveau/nv50/nv50_defs.xml.h | 200 ++
src/gallium/drivers/nouveau/nv50/nv50_draw.c | 88 +
src/gallium/drivers/nouveau/nv50/nv50_formats.c | 504 ++++
src/gallium/drivers/nouveau/nv50/nv50_miptree.c | 498 ++++
src/gallium/drivers/nouveau/nv50/nv50_program.c | 445 +++
src/gallium/drivers/nouveau/nv50/nv50_program.h | 106 +
src/gallium/drivers/nouveau/nv50/nv50_push.c | 309 ++
src/gallium/drivers/nouveau/nv50/nv50_query.c | 399 +++
src/gallium/drivers/nouveau/nv50/nv50_resource.c | 104 +
src/gallium/drivers/nouveau/nv50/nv50_resource.h | 153 +
src/gallium/drivers/nouveau/nv50/nv50_screen.c | 845 ++++++
src/gallium/drivers/nouveau/nv50/nv50_screen.h | 153 +
.../drivers/nouveau/nv50/nv50_shader_state.c | 623 ++++
src/gallium/drivers/nouveau/nv50/nv50_state.c | 1110 ++++++++
.../drivers/nouveau/nv50/nv50_state_validate.c | 414 +++
src/gallium/drivers/nouveau/nv50/nv50_stateobj.h | 78 +
.../drivers/nouveau/nv50/nv50_stateobj_tex.h | 34 +
src/gallium/drivers/nouveau/nv50/nv50_surface.c | 1353 +++++++++
src/gallium/drivers/nouveau/nv50/nv50_tex.c | 352 +++
.../drivers/nouveau/nv50/nv50_texture.xml.h | 306 ++
src/gallium/drivers/nouveau/nv50/nv50_transfer.c | 412 +++
src/gallium/drivers/nouveau/nv50/nv50_transfer.h | 27 +
src/gallium/drivers/nouveau/nv50/nv50_vbo.c | 820 ++++++
src/gallium/drivers/nouveau/nv50/nv50_winsys.h | 125 +
src/gallium/drivers/nouveau/nv50/nv84_video.c | 797 ++++++
src/gallium/drivers/nouveau/nv50/nv84_video.h | 138 +
src/gallium/drivers/nouveau/nv50/nv84_video_bsp.c | 250 ++
src/gallium/drivers/nouveau/nv50/nv84_video_vp.c | 552 ++++
src/gallium/drivers/nouveau/nv50/nv98_video.c | 297 ++
src/gallium/drivers/nouveau/nv50/nv98_video.h | 48 +
src/gallium/drivers/nouveau/nv50/nv98_video_bsp.c | 159 ++
src/gallium/drivers/nouveau/nv50/nv98_video_ppp.c | 143 +
src/gallium/drivers/nouveau/nv50/nv98_video_vp.c | 202 ++
src/gallium/drivers/nouveau/nvc0/nvc0_2d.xml.h | 380 +++
src/gallium/drivers/nouveau/nvc0/nvc0_3d.xml.h | 1350 +++++++++
src/gallium/drivers/nouveau/nvc0/nvc0_3ddefs.xml.h | 98 +
src/gallium/drivers/nouveau/nvc0/nvc0_compute.c | 271 ++
src/gallium/drivers/nouveau/nvc0/nvc0_compute.h | 10 +
.../drivers/nouveau/nvc0/nvc0_compute.xml.h | 410 +++
src/gallium/drivers/nouveau/nvc0/nvc0_context.c | 402 +++
src/gallium/drivers/nouveau/nvc0/nvc0_context.h | 357 +++
src/gallium/drivers/nouveau/nvc0/nvc0_draw.c | 88 +
src/gallium/drivers/nouveau/nvc0/nvc0_formats.c | 25 +
.../drivers/nouveau/nvc0/nvc0_graph_macros.h | 236 ++
src/gallium/drivers/nouveau/nvc0/nvc0_m2mf.xml.h | 138 +
src/gallium/drivers/nouveau/nvc0/nvc0_miptree.c | 358 +++
src/gallium/drivers/nouveau/nvc0/nvc0_program.c | 811 ++++++
src/gallium/drivers/nouveau/nvc0/nvc0_program.h | 68 +
src/gallium/drivers/nouveau/nvc0/nvc0_push.c | 409 +++
src/gallium/drivers/nouveau/nvc0/nvc0_query.c | 1448 ++++++++++
src/gallium/drivers/nouveau/nvc0/nvc0_resource.c | 62 +
src/gallium/drivers/nouveau/nvc0/nvc0_resource.h | 58 +
src/gallium/drivers/nouveau/nvc0/nvc0_screen.c | 967 +++++++
src/gallium/drivers/nouveau/nvc0/nvc0_screen.h | 325 +++
.../drivers/nouveau/nvc0/nvc0_shader_state.c | 278 ++
src/gallium/drivers/nouveau/nvc0/nvc0_state.c | 1247 ++++++++
.../drivers/nouveau/nvc0/nvc0_state_validate.c | 577 ++++
src/gallium/drivers/nouveau/nvc0/nvc0_stateobj.h | 77 +
src/gallium/drivers/nouveau/nvc0/nvc0_surface.c | 1265 +++++++++
src/gallium/drivers/nouveau/nvc0/nvc0_tex.c | 814 ++++++
src/gallium/drivers/nouveau/nvc0/nvc0_transfer.c | 558 ++++
src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c | 891 ++++++
.../drivers/nouveau/nvc0/nvc0_vbo_translate.c | 649 +++++
src/gallium/drivers/nouveau/nvc0/nvc0_video.c | 331 +++
src/gallium/drivers/nouveau/nvc0/nvc0_video.h | 48 +
src/gallium/drivers/nouveau/nvc0/nvc0_video_bsp.c | 155 +
src/gallium/drivers/nouveau/nvc0/nvc0_video_ppp.c | 143 +
src/gallium/drivers/nouveau/nvc0/nvc0_video_vp.c | 202 ++
src/gallium/drivers/nouveau/nvc0/nvc0_winsys.h | 144 +
src/gallium/drivers/nouveau/nvc0/nve4_compute.c | 652 +++++
src/gallium/drivers/nouveau/nvc0/nve4_compute.h | 131 +
.../drivers/nouveau/nvc0/nve4_compute.xml.h | 429 +++
src/gallium/drivers/nouveau/nvc0/nve4_p2mf.xml.h | 107 +
src/gallium/drivers/nv30/Android.mk | 37 -
src/gallium/drivers/nv30/Makefile.am | 34 -
src/gallium/drivers/nv30/Makefile.sources | 20 -
src/gallium/drivers/nv30/nv01_2d.xml.h | 1416 ----------
src/gallium/drivers/nv30/nv30-40_3d.xml.h | 2045 --------------
src/gallium/drivers/nv30/nv30_clear.c | 226 --
src/gallium/drivers/nv30/nv30_context.c | 263 --
src/gallium/drivers/nv30/nv30_context.h | 237 --
src/gallium/drivers/nv30/nv30_draw.c | 506 ----
src/gallium/drivers/nv30/nv30_format.c | 259 --
src/gallium/drivers/nv30/nv30_format.h | 57 -
src/gallium/drivers/nv30/nv30_fragprog.c | 170 --
src/gallium/drivers/nv30/nv30_fragtex.c | 202 --
src/gallium/drivers/nv30/nv30_miptree.c | 490 ----
src/gallium/drivers/nv30/nv30_push.c | 290 --
src/gallium/drivers/nv30/nv30_query.c | 274 --
src/gallium/drivers/nv30/nv30_resource.c | 77 -
src/gallium/drivers/nv30/nv30_resource.h | 75 -
src/gallium/drivers/nv30/nv30_screen.c | 588 ----
src/gallium/drivers/nv30/nv30_screen.h | 51 -
src/gallium/drivers/nv30/nv30_state.c | 458 ---
src/gallium/drivers/nv30/nv30_state.h | 144 -
src/gallium/drivers/nv30/nv30_state_validate.c | 538 ----
src/gallium/drivers/nv30/nv30_texture.c | 306 --
src/gallium/drivers/nv30/nv30_transfer.c | 754 -----
src/gallium/drivers/nv30/nv30_transfer.h | 40 -
src/gallium/drivers/nv30/nv30_vbo.c | 627 ----
src/gallium/drivers/nv30/nv30_vertprog.c | 258 --
src/gallium/drivers/nv30/nv30_vertprog.h | 176 --
src/gallium/drivers/nv30/nv30_winsys.h | 158 --
src/gallium/drivers/nv30/nv40_vertprog.h | 178 --
src/gallium/drivers/nv30/nv40_verttex.c | 100 -
src/gallium/drivers/nv30/nvfx_fragprog.c | 1251 --------
src/gallium/drivers/nv30/nvfx_shader.h | 525 ----
src/gallium/drivers/nv30/nvfx_vertprog.c | 1133 --------
src/gallium/drivers/nv50/Android.mk | 37 -
src/gallium/drivers/nv50/Makefile.am | 34 -
src/gallium/drivers/nv50/Makefile.sources | 49 -
src/gallium/drivers/nv50/codegen/nv50_ir.cpp | 1231 --------
src/gallium/drivers/nv50/codegen/nv50_ir.h | 1197 --------
src/gallium/drivers/nv50/codegen/nv50_ir_bb.cpp | 550 ----
.../drivers/nv50/codegen/nv50_ir_build_util.cpp | 614 ----
.../drivers/nv50/codegen/nv50_ir_build_util.h | 324 ---
src/gallium/drivers/nv50/codegen/nv50_ir_driver.h | 220 --
.../drivers/nv50/codegen/nv50_ir_emit_nv50.cpp | 1962 -------------
.../drivers/nv50/codegen/nv50_ir_from_tgsi.cpp | 2852 -------------------
src/gallium/drivers/nv50/codegen/nv50_ir_graph.cpp | 436 ---
src/gallium/drivers/nv50/codegen/nv50_ir_graph.h | 228 --
src/gallium/drivers/nv50/codegen/nv50_ir_inlines.h | 420 ---
.../drivers/nv50/codegen/nv50_ir_lowering_nv50.cpp | 1101 --------
.../drivers/nv50/codegen/nv50_ir_peephole.cpp | 2464 ----------------
src/gallium/drivers/nv50/codegen/nv50_ir_print.cpp | 698 -----
src/gallium/drivers/nv50/codegen/nv50_ir_ra.cpp | 2050 --------------
src/gallium/drivers/nv50/codegen/nv50_ir_ssa.cpp | 552 ----
.../drivers/nv50/codegen/nv50_ir_target.cpp | 469 ---
src/gallium/drivers/nv50/codegen/nv50_ir_target.h | 235 --
.../drivers/nv50/codegen/nv50_ir_target_nv50.cpp | 552 ----
.../drivers/nv50/codegen/nv50_ir_target_nv50.h | 72 -
src/gallium/drivers/nv50/codegen/nv50_ir_util.cpp | 390 ---
src/gallium/drivers/nv50/codegen/nv50_ir_util.h | 788 ------
src/gallium/drivers/nv50/nv50_2d.xml.h | 416 ---
src/gallium/drivers/nv50/nv50_3d.xml.h | 2110 --------------
src/gallium/drivers/nv50/nv50_3ddefs.xml.h | 98 -
src/gallium/drivers/nv50/nv50_blit.h | 223 --
src/gallium/drivers/nv50/nv50_context.c | 317 ---
src/gallium/drivers/nv50/nv50_context.h | 322 ---
src/gallium/drivers/nv50/nv50_debug.h | 25 -
src/gallium/drivers/nv50/nv50_defs.xml.h | 200 --
src/gallium/drivers/nv50/nv50_draw.c | 88 -
src/gallium/drivers/nv50/nv50_formats.c | 504 ----
src/gallium/drivers/nv50/nv50_miptree.c | 498 ----
src/gallium/drivers/nv50/nv50_program.c | 445 ---
src/gallium/drivers/nv50/nv50_program.h | 106 -
src/gallium/drivers/nv50/nv50_push.c | 309 --
src/gallium/drivers/nv50/nv50_query.c | 399 ---
src/gallium/drivers/nv50/nv50_resource.c | 104 -
src/gallium/drivers/nv50/nv50_resource.h | 153 -
src/gallium/drivers/nv50/nv50_screen.c | 845 ------
src/gallium/drivers/nv50/nv50_screen.h | 153 -
src/gallium/drivers/nv50/nv50_shader_state.c | 623 ----
src/gallium/drivers/nv50/nv50_state.c | 1110 --------
src/gallium/drivers/nv50/nv50_state_validate.c | 414 ---
src/gallium/drivers/nv50/nv50_stateobj.h | 78 -
src/gallium/drivers/nv50/nv50_stateobj_tex.h | 34 -
src/gallium/drivers/nv50/nv50_surface.c | 1355 ---------
src/gallium/drivers/nv50/nv50_tex.c | 352 ---
src/gallium/drivers/nv50/nv50_texture.xml.h | 306 --
src/gallium/drivers/nv50/nv50_transfer.c | 412 ---
src/gallium/drivers/nv50/nv50_transfer.h | 27 -
src/gallium/drivers/nv50/nv50_vbo.c | 820 ------
src/gallium/drivers/nv50/nv50_winsys.h | 125 -
src/gallium/drivers/nv50/nv84_video.c | 797 ------
src/gallium/drivers/nv50/nv84_video.h | 138 -
src/gallium/drivers/nv50/nv84_video_bsp.c | 250 --
src/gallium/drivers/nv50/nv84_video_vp.c | 552 ----
src/gallium/drivers/nv50/nv98_video.c | 297 --
src/gallium/drivers/nv50/nv98_video.h | 48 -
src/gallium/drivers/nv50/nv98_video_bsp.c | 159 --
src/gallium/drivers/nv50/nv98_video_ppp.c | 143 -
src/gallium/drivers/nv50/nv98_video_vp.c | 202 --
src/gallium/drivers/nvc0/Android.mk | 37 -
src/gallium/drivers/nvc0/Makefile.am | 34 -
src/gallium/drivers/nvc0/Makefile.sources | 22 -
.../drivers/nvc0/codegen/nv50_ir_emit_gk110.cpp | 1682 -----------
.../drivers/nvc0/codegen/nv50_ir_emit_nvc0.cpp | 2988 --------------------
.../drivers/nvc0/codegen/nv50_ir_lowering_nvc0.cpp | 1597 -----------
.../drivers/nvc0/codegen/nv50_ir_target_nvc0.cpp | 604 ----
.../drivers/nvc0/codegen/nv50_ir_target_nvc0.h | 74 -
.../drivers/nvc0/codegen/target_lib_nvc0.asm | 96 -
.../drivers/nvc0/codegen/target_lib_nvc0.asm.h | 113 -
.../drivers/nvc0/codegen/target_lib_nve4.asm | 698 -----
.../drivers/nvc0/codegen/target_lib_nve4.asm.h | 593 ----
.../drivers/nvc0/codegen/target_lib_nvf0.asm.h | 13 -
src/gallium/drivers/nvc0/nvc0_2d.xml.h | 380 ---
src/gallium/drivers/nvc0/nvc0_3d.xml.h | 1350 ---------
src/gallium/drivers/nvc0/nvc0_3ddefs.xml.h | 98 -
src/gallium/drivers/nvc0/nvc0_compute.c | 271 --
src/gallium/drivers/nvc0/nvc0_compute.h | 10 -
src/gallium/drivers/nvc0/nvc0_compute.xml.h | 410 ---
src/gallium/drivers/nvc0/nvc0_context.c | 402 ---
src/gallium/drivers/nvc0/nvc0_context.h | 357 ---
src/gallium/drivers/nvc0/nvc0_draw.c | 88 -
src/gallium/drivers/nvc0/nvc0_formats.c | 25 -
src/gallium/drivers/nvc0/nvc0_graph_macros.h | 236 --
src/gallium/drivers/nvc0/nvc0_m2mf.xml.h | 138 -
src/gallium/drivers/nvc0/nvc0_miptree.c | 358 ---
src/gallium/drivers/nvc0/nvc0_program.c | 811 ------
src/gallium/drivers/nvc0/nvc0_program.h | 68 -
src/gallium/drivers/nvc0/nvc0_push.c | 409 ---
src/gallium/drivers/nvc0/nvc0_query.c | 1448 ----------
src/gallium/drivers/nvc0/nvc0_resource.c | 62 -
src/gallium/drivers/nvc0/nvc0_resource.h | 58 -
src/gallium/drivers/nvc0/nvc0_screen.c | 967 -------
src/gallium/drivers/nvc0/nvc0_screen.h | 325 ---
src/gallium/drivers/nvc0/nvc0_shader_state.c | 278 --
src/gallium/drivers/nvc0/nvc0_state.c | 1248 --------
src/gallium/drivers/nvc0/nvc0_state_validate.c | 577 ----
src/gallium/drivers/nvc0/nvc0_stateobj.h | 77 -
src/gallium/drivers/nvc0/nvc0_surface.c | 1266 ---------
src/gallium/drivers/nvc0/nvc0_tex.c | 814 ------
src/gallium/drivers/nvc0/nvc0_transfer.c | 558 ----
src/gallium/drivers/nvc0/nvc0_vbo.c | 891 ------
src/gallium/drivers/nvc0/nvc0_vbo_translate.c | 649 -----
src/gallium/drivers/nvc0/nvc0_video.c | 331 ---
src/gallium/drivers/nvc0/nvc0_video.h | 48 -
src/gallium/drivers/nvc0/nvc0_video_bsp.c | 155 -
src/gallium/drivers/nvc0/nvc0_video_ppp.c | 143 -
src/gallium/drivers/nvc0/nvc0_video_vp.c | 202 --
src/gallium/drivers/nvc0/nvc0_winsys.h | 144 -
src/gallium/drivers/nvc0/nve4_compute.c | 652 -----
src/gallium/drivers/nvc0/nve4_compute.h | 131 -
src/gallium/drivers/nvc0/nve4_compute.xml.h | 429 ---
src/gallium/drivers/nvc0/nve4_p2mf.xml.h | 107 -
src/gallium/targets/dri-nouveau/Makefile.am | 3 -
src/gallium/targets/egl-static/Makefile.am | 3 -
src/gallium/targets/pipe-loader/Makefile.am | 3 -
src/gallium/targets/vdpau-nouveau/Makefile.am | 3 -
src/gallium/targets/xorg-nouveau/Makefile.am | 3 -
src/gallium/targets/xvmc-nouveau/Makefile.am | 3 -
312 files changed, 74371 insertions(+), 74603 deletions(-)

Upstream: cgit.freedesktop.org


  • Share