Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-04-03 | draw: add passthrough path to the pipeline | Keith Whitwell | |
This handles the case where bypass_vs is set, but vertices need to go through the pipeline for some reason - eg unfilled polygon mode. Demonstrates how to drive the pipeline from inside one of these things. | |||
2008-04-02 | draw: add missing break statement | Keith Whitwell | |
2008-04-02 | draw: Set the backend prim in the pt 'prepare' operation | Keith Whitwell | |
Leaving it until 'run' is bad as the primitive is pretty much state for some drivers and so needs to get set early. In some drivers this is used to determine things like vertex format, etc -- by the time we get to 'run', it's too late to change this. | |||
2008-04-02 | gallium: add a flag to turn on gl rasterization rules | Keith Whitwell | |
Use this to set up hardware rasterization (if your hardware can do it) or otherwise turn on various tweaks in the draw module. Currently only hooked up to point biasing code. | |||
2008-04-02 | gallium: add temporary facility for rasterization-time clamping of point sizes | Keith Whitwell | |
2008-04-01 | draw: remove dead code | Keith Whitwell | |
2008-04-01 | draw: more flatshade_first changes | Keith Whitwell | |
- Reduce the number of changes to the normal vertex ordering - Assume that the hardware knows how to do this in the standard case. - Add support to the passthrough vcache path. | |||
2008-04-01 | draw: respect flatshade_first in flatshade stage | Keith Whitwell | |
2008-04-01 | draw: associate rhw divide with clipping not viewport flag | Keith Whitwell | |
2008-04-01 | draw: flush between pt/non-pt modes | Keith Whitwell | |
2008-03-31 | gallium: draw_passthrough.c is obsolete - removed | Brian | |
2008-03-31 | gallium: move the test for bypass_vs into the vs_XXX_run() functions | Brian | |
Also: 1. Added an identity_viewport flag to skip viewport transformation when it has no effect. Might also add an explicit bypass_viewport flag someday. 2. Separate the code for computing clip codes and doing the viewport transform. Predicate them separately. Note: even if bypass_vs is set, we still look at the shader to determine the number of inputs and outputs. | |||
2008-03-31 | gallium: draw_passthrough.c is not used anymore | Brian | |
2008-03-31 | gallium: draw_passthrough.c is not used anymore | Brian | |
2008-03-30 | draw: Do not run full pipeline when flatshade_first for point primitives. | Michal Krol | |
2008-03-30 | draw: Fix bypass_vs semantic misuse. | Michal Krol | |
2008-03-29 | gallium: Set vertex state/buffers en-mass. | Brian Paul | |
2008-03-29 | gallium: Fix some MSVC warnings. | José Fonseca | |
2008-03-27 | gallium: replace PIPE_ATTRIB_MAX with PIPE_MAX_ATTRIBS | Brian | |
The later follows the naming scheme of other limits. Keep the old definition until all possible usage is updated. | |||
2008-03-27 | gallium: remove temporary static var | Brian | |
2008-03-26 | gallium: as for aapoints, make the extra texcoord per-shader state | Brian Paul | |
2008-03-25 | gallium: the generic attrib we use for computing coverage is per-shader | Brian | |
Fixes a very tricky conformance failure. | |||
2008-03-25 | draw: Take flatshade_first rasterizer bit into account. | Michal Krol | |
2008-03-25 | draw: vertex fetch can be validated too early leading to an assertion... disable | Keith Whitwell | |
2008-03-25 | draw: don't use fetch_and_store for bypass_vs mode, it's not quite right | Keith Whitwell | |
2008-03-25 | draw: take primitive into account when deciding if the pipeline is active | Keith Whitwell | |
2008-03-24 | gallium: be smarter about picking the sampler unit for pstipple, aaalines | Brian | |
Also, if the app really uses all available sampler/texture units, don't just die. Just use the last sampler for the pstipple or aaline texture. | |||
2008-03-24 | gallium: move sampler_unit field to pstip_fragment_shader since it's per-shader | Brian | |
Also, fix another texture refcounting bug. | |||
2008-03-24 | gallium: make a copy of the vertex shader's token array. | Brian | |
This solves problems when the state tracker frees the token array when the draw module still needs it. | |||
2008-03-24 | gallium: use pipe_texture_reference() in a few places (fixes refcounting bugs) | Brian | |
2008-03-24 | draw: pre-declare referenced structs | Keith Whitwell | |
2008-03-24 | Revert "draw: Fix #include order to fix Linux build." | Keith Whitwell | |
This reverts commit a6d17bf671d6bfbb187a62ba14b9ad08fb5dafe1. | |||
2008-03-24 | draw: Fix #include order to fix Linux build. | Michel Dänzer | |
2008-03-23 | draw: check need_pipeline() in passthrough | Keith Whitwell | |
2008-03-23 | draw: tweak the definition of draw_need_pipeline, fix minor bug | Keith Whitwell | |
2008-03-23 | draw: fix crlf | Keith Whitwell | |
2008-03-23 | draw: rename emit functions to match pipe_format names | Keith Whitwell | |
2008-03-23 | draw: restructure fetch/emit as a pair of function calls | Keith Whitwell | |
2008-03-23 | draw: fix some unsigned vs ushort confusion | Keith Whitwell | |
Middle-end elements are ushort, but prior to that have to treat all elements as unsigned to avoid wrapping and/or overruns. | |||
2008-03-23 | gallium: beginnings of draw module vertex rework | Keith Whitwell | |
Trying to put a structure in place that we can actually optimize. Initially just implementing a passthrough mode, this will fairly soon replace all the vertex_cache/prim_queue/shader_queue stuff that's so hard to understand... Split the vertex processing into a couple of distinct stages: - Frontend - Prepares two lists of elements (fetch and draw) to be processed by the next stage. This stage doesn't fetch or draw vertices, but makes the decision which to draw. Multiple implementations of this will implement different strategies, currently just a vcache implementation. - MiddleEnd - Takes the list of fetch elements, fetches them, runs the vertex shader, cliptest, viewport transform on them to produce a linear array of vertex_header vertices. - Passes that list of vertices, plus the draw_elements (which index into that list) onto the backend - Backend - Either the existing primitive/clipping pipeline, or the vbuf_render hardware backend provided by the driver. Currently, the middle-end is the old passthrough code, and it build hardware vertices, not vertex_header vertices as above. It may be that passthrough is a special case in this respect. | |||
2008-03-22 | gallium: free samplers, textures in destroy() | Brian | |
2008-03-22 | gallium: fix mem leak (fee pstipple stage) | Brian | |
2008-03-19 | gallium: add face, dirtyLevels params to pipe->texture_update() | Brian Paul | |
This provides better information about which images in texture object have changed. Also, call texture_update() from more places previously missed. | |||
2008-03-18 | gallium: added braces to silence warning | Brian | |
2008-03-17 | gallium: improvements, or extensions at least, to the passthrough path | Keith Whitwell | |
Passthrough is actually more tricky than you'd think... | |||
2008-03-14 | gallium: add explicit control for point sprites (convert points to textured ↵ | Brian | |
quads) New draw_enable_point_sprites() function. Fixes spriteblast.c demo | |||
2008-03-14 | scons: Remove second occurence of draw_passthrough.c. | Michal Krol | |
2008-03-14 | gallium: added some debug code (disabled) | Brian | |
2008-03-14 | gallium: fix some compiler warnings | Keith Whitwell | |
2008-03-13 | gallium: fix EMIT_HEADER case in draw_vf_set_vertex_info() | Brian | |