From: Ian Romanick Date: Mon, 30 Nov 2009 20:43:12 +0000 (-0800) Subject: i915: Actually put i915PointParameterfv in the driver function table. Duh. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=587a52e95bbe96788e8b96b63f091bb3022fc048;p=mesa.git i915: Actually put i915PointParameterfv in the driver function table. Duh. --- diff --git a/src/mesa/drivers/dri/i915/i915_state.c b/src/mesa/drivers/dri/i915/i915_state.c index 86f37379dc4..cc98d125dbc 100644 --- a/src/mesa/drivers/dri/i915/i915_state.c +++ b/src/mesa/drivers/dri/i915/i915_state.c @@ -1137,6 +1137,7 @@ i915InitStateFunctions(struct dd_function_table *functions) functions->LineWidth = i915LineWidth; functions->LogicOpcode = i915LogicOp; functions->PointSize = i915PointSize; + functions->PointParameterfv = i915PointParameterfv; functions->PolygonStipple = i915PolygonStipple; functions->Scissor = i915Scissor; functions->ShadeModel = i915ShadeModel;