diff options
author | Brian Paul <[email protected]> | 2008-08-19 14:24:27 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-08-19 14:35:31 -0600 |
commit | e90c0c976d89d108a8220b538e02be173cf308fe (patch) | |
tree | b8d49f5596235db88a899b13cad3d3b02db4cac3 /src/mesa/state_tracker/st_context.c | |
parent | 9e3aaa50483b61d644306d483feed564c69018bf (diff) |
gallium: do a proper implementation of GL_OES_read_format
Examine the currently bound color buffer's format to see if there's a good
format/type match.
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 3b126e6c8f6..83b0be06daa 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -49,6 +49,7 @@ #include "st_cb_drawtex.h" #endif #include "st_cb_fbo.h" +#include "st_cb_get.h" #if FEATURE_feedback #include "st_cb_feedback.h" #endif @@ -293,6 +294,7 @@ void st_init_driver_functions(struct dd_function_table *functions) st_init_rasterpos_functions(functions); #endif st_init_fbo_functions(functions); + st_init_get_functions(functions); #if FEATURE_feedback st_init_feedback_functions(functions); #endif |