diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-11-08 08:22:42 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-11-08 08:48:14 -0700 |
commit | 44254b92480115e5c8a2d5cf78f99195c03701eb (patch) | |
tree | 086564302fdb3ac15ef1bf25c5da44a11fc42e5b /src/mesa/pipe/failover | |
parent | 95128c1d4c88238a79ead6e36215a646f83bbdd3 (diff) |
Added pipe->get_paramf() to query float limits.
So far max point size, line width, texture anistopy and lod bias.
Diffstat (limited to 'src/mesa/pipe/failover')
-rw-r--r-- | src/mesa/pipe/failover/fo_context.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/pipe/failover/fo_context.c b/src/mesa/pipe/failover/fo_context.c index e18b349ef3..c5fab73fb1 100644 --- a/src/mesa/pipe/failover/fo_context.c +++ b/src/mesa/pipe/failover/fo_context.c @@ -120,6 +120,7 @@ struct pipe_context *failover_create( struct pipe_context *hw, failover->pipe.get_name = hw->get_name; failover->pipe.get_vendor = hw->get_vendor; failover->pipe.get_param = hw->get_param; + failover->pipe.get_paramf = hw->get_paramf; failover->pipe.draw_arrays = failover_draw_arrays; failover->pipe.draw_elements = failover_draw_elements; |