diff options
author | Brian Paul <[email protected]> | 2009-12-31 14:47:21 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-12-31 14:47:21 -0700 |
commit | c9b558351847133dced0c9daaeb84d57d550afc9 (patch) | |
tree | a7ef2b66fd14682a4e1be078937d3e72e7c71258 /src/mesa/state_tracker/st_context.c | |
parent | f1b382d2e66855d49354356f2d3209652aaf5987 (diff) |
st/mesa: implement conditional rendering
Diffstat (limited to 'src/mesa/state_tracker/st_context.c')
-rw-r--r-- | src/mesa/state_tracker/st_context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index d18a25ab514..e4f18c842ca 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -43,6 +43,7 @@ #include "st_cb_blit.h" #include "st_cb_bufferobjects.h" #include "st_cb_clear.h" +#include "st_cb_condrender.h" #if FEATURE_drawpix #include "st_cb_drawpixels.h" #include "st_cb_rasterpos.h" @@ -337,6 +338,7 @@ void st_init_driver_functions(struct dd_function_table *functions) #if FEATURE_queryobj st_init_query_functions(functions); #endif + st_init_cond_render_functions(functions); st_init_readpixels_functions(functions); st_init_texture_functions(functions); st_init_flush_functions(functions); |