Clone of mesa.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Brian Paul 5ac16495a2 Merge branch 'mesa_7_7_branch' il y a 15 ans
..
.gitignore progs/rbug: Add small program to add block rules il y a 16 ans
Makefile progs/rbug: Link to math il y a 16 ans
README progs/rbug: Add small remote debugging cli applications il y a 16 ans
bin_to_bmp.c rbug: rename pf_is_compressed to util_format_is_compressed il y a 15 ans
ctx_info.c progs/rbug: Add small remote debugging cli applications il y a 16 ans
ctx_rule.c progs/rbug: Add small program to add block rules il y a 16 ans
shdr_disable.c progs/rbug: Add small remote debugging cli applications il y a 16 ans
shdr_dump.c progs/rbug: Add small remote debugging cli applications il y a 16 ans
shdr_info.c progs/rbug: Add small remote debugging cli applications il y a 16 ans
simple_client.c progs/rbug: Add small remote debugging cli applications il y a 16 ans
simple_server.c progs/rbug: s/wait/rbug_wait/ il y a 15 ans
tex_dump.c rbug: rename pf_is_compressed to util_format_is_compressed il y a 15 ans
tex_info.c progs/rbug: Add small remote debugging cli applications il y a 16 ans

README

                        REMOTE DEBUGGING CLI APPLICATIONS


= About =

This directory contains a Gallium3D remote debugging cli applications.


= Build Instructions =

To build, build a normal gallium build and from this directory do the following.

make

= Usage =

Make sure that you driver has trace integration, see
src/gallium/driver/trace/README for more information about that. Then from on
the computer that you want to debug do:

export GALLIUM_RBUG=true

<launch app>

From the debugging computer launch apps form this directory. Currently ip
addresses are hardcoded and you need to edit the application, but that will
change in the future.

= Testing =

The two apps simple_client and simple_server. Are unit testing of the
connection and (de)marsheler. Just run the server first and then the client:

./simple_server &
./simple_client


--
Jakob Bornecrantz <jakob@vmware.com>