diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-11-06 09:41:45 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-11-06 09:41:45 -0700 |
commit | e2feb80a90f3e9300c70a4a4eb3e966131f5c313 (patch) | |
tree | d407028c34268b686e0c5802c07e09bac0d57ece /src/mesa/pipe/failover/fo_context.c | |
parent | 24ac9c30ebfd2edabdd21bfc9cf4e9db21cd10df (diff) |
Remove pipe->max_texture_size(), use get_param() instead.
Also, in st_init_limits(), clamp driver's values against Mesa's internal limits.
Diffstat (limited to 'src/mesa/pipe/failover/fo_context.c')
-rw-r--r-- | src/mesa/pipe/failover/fo_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/failover/fo_context.c b/src/mesa/pipe/failover/fo_context.c index aa5d0885e6..e18b349ef3 100644 --- a/src/mesa/pipe/failover/fo_context.c +++ b/src/mesa/pipe/failover/fo_context.c @@ -117,9 +117,9 @@ struct pipe_context *failover_create( struct pipe_context *hw, failover->pipe.winsys = hw->winsys; failover->pipe.destroy = failover_destroy; failover->pipe.is_format_supported = hw->is_format_supported; - failover->pipe.max_texture_size = hw->max_texture_size; failover->pipe.get_name = hw->get_name; failover->pipe.get_vendor = hw->get_vendor; + failover->pipe.get_param = hw->get_param; failover->pipe.draw_arrays = failover_draw_arrays; failover->pipe.draw_elements = failover_draw_elements; |