Age | Commit message (Collapse) | Author |
|
Fix warnings in draw_create_vertex_shader()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function)
|
|
|
|
|
|
|
|
|
|
Without these we can find ourselves in _mesa_load_state_parameters()
computing derived lighting/material values whhen the current material
properties haven't been updated from the VBO.
This may be a somewhat wide-spread problem that needs more attention...
|
|
from the vbo in _mesa_load_state_parameters().
Several of the state parameters use current state (such as materials).
Need to make sure those values are not stale.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
doesn't handle negative color values)
Also, remove unneeded clamping in the accum ops.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
We always need to compute the absolute value of the fogcoord if we're
passing it through for per-fragment fog.
|
|
|
|
|
|
|
|
|
|
|
|
This fixes potential a stale reference to vertex buffers.
Fixes cubemap demo on i915.
|