diff options
author | José Fonseca <[email protected]> | 2010-03-13 10:45:52 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-03-13 11:23:52 +0000 |
commit | 3160cbabccf1f7d8bdf344242507b9c3082f15c6 (patch) | |
tree | 68594948373306db36cd062def473727f02d2ee2 /src/gallium/drivers/llvmpipe/lp_context.h | |
parent | 83fe7149eaea7ca607a5aa74e092b9cf86f12b73 (diff) |
llvmpipe: setup_context -> lp_setup_context
Otherwise IDEs and debuggers have trouble distinguishing from softpipe's
setup_context.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_context.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_context.h b/src/gallium/drivers/llvmpipe/lp_context.h index 217ec59b688..f391871b0ee 100644 --- a/src/gallium/drivers/llvmpipe/lp_context.h +++ b/src/gallium/drivers/llvmpipe/lp_context.h @@ -45,7 +45,7 @@ struct draw_stage; struct lp_fragment_shader; struct lp_vertex_shader; struct lp_blend_state; -struct setup_context; +struct lp_setup_context; struct lp_velems_state; struct llvmpipe_context { @@ -98,7 +98,7 @@ struct llvmpipe_context { int psize_slot; /** The tiling engine */ - struct setup_context *setup; + struct lp_setup_context *setup; /** The primitive drawing context */ struct draw_context *draw; |