diff options
author | Dave Airlie <[email protected]> | 2013-03-04 06:14:18 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2013-04-11 21:09:28 +0100 |
commit | 1d90ee5ef500e604267439557f99d94b49d7fbb6 (patch) | |
tree | 6fb73e4fc35722c72e0a34c87fe401341ce58a1c /src/mesa/state_tracker/st_context.c | |
parent | cc906396c76076f68b4e753a8d28a7f8420b2f79 (diff) |
st/mesa: add support for get sample position
This just calls into the gallium interface.
Reviewed-by: Marek Olšák <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
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 cc87f2bb38d..2042be36bd3 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -49,6 +49,7 @@ #include "st_cb_eglimage.h" #include "st_cb_fbo.h" #include "st_cb_feedback.h" +#include "st_cb_msaa.h" #include "st_cb_program.h" #include "st_cb_queryobj.h" #include "st_cb_readpixels.h" @@ -340,6 +341,7 @@ void st_init_driver_functions(struct dd_function_table *functions) st_init_fbo_functions(functions); st_init_feedback_functions(functions); + st_init_msaa_functions(functions); st_init_program_functions(functions); st_init_query_functions(functions); st_init_cond_render_functions(functions); |