Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-09-20 | Checkpoint: vertex attribute clean-up. | Brian | |
Remove/disable the attrib/slot mapping arrays in a few places. Work in progress... | |||
2007-09-20 | Always update st->state.vs, not just when the program is dirty. | Brian | |
This fixes a regression in the cubemap.c demo which alternates between two different vertex shaders. | |||
2007-09-20 | fix input/output typos | Brian | |
2007-09-20 | Allow drivers to cache the template in case they want to | Zack Rusin | |
fallback through softpipe which will require the template. | |||
2007-09-20 | Fix failover state binding and convert the sampler to use the new | Zack Rusin | |
state constant state object semantics. | |||
2007-09-20 | Convert depth_stencil state to the new semantics. | Zack Rusin | |
2007-09-20 | Switch fragment/vertex shaders to the new caching semantics. | Zack Rusin | |
Allow driver custom allocation within cached objects. The shaders are currently twiced (by cso layer and by the program itself). | |||
2007-09-19 | Checkpoint: replacement of TGSI_ATTRIB_x tokens with input/output semantics. | Brian | |
TGSI_ATTRIB_x tokens still present and used in a few places. Expanded set of TGSI_SEMANTIC_x tokens for describing the meaning of inputs/outputs. These tokens are in a crude state ATM. Lots of #if 0 / disabled code to be removed yet, etc... Softpipe and i915 drivers should be in working condition but not heavily tested. | |||
2007-09-19 | Fix window resizes. | Michel Dänzer | |
The memcmp is insufficient for eliminating redundant framebuffer state changes. | |||
2007-09-19 | Pad surface dimensions to multiples of 2. | Michel Dänzer | |
Avoids an assertion failure with softpipe if requested width or height is odd. | |||
2007-09-19 | Adding proper includes often helps with the warnings, | Zack Rusin | |
or so i hear.. | |||
2007-09-19 | Avoid redundant reallocation of the template. | Zack Rusin | |
cso already allocated the template for us. Returning 0 means we have no driver specific representation and just want the template on the bind. | |||
2007-09-19 | Convert the rasterizer cso to the new semantics. | Zack Rusin | |
Basically make cso hold the driver specific struct, while managing the template. | |||
2007-09-19 | Redo the cso cache to map driver data in a lot more pleasing way. | Zack Rusin | |
Drivers can now create whatever they want from the state template. We use cso_state object to store the template (necessary during lookups), and the driver data. Convert blend state to the new semantics. | |||
2007-09-19 | grab vertex program pointer after state validation | Brian | |
2007-09-19 | Only generate vertex shader code when necessary. | Michel Dänzer | |
2007-09-19 | Finish up conversions of shaders to immutable objects. | Zack Rusin | |
Create/Delete calls should be split since in create we'll be compiling them so we want to know which one it is (vertex/fragment). | |||
2007-09-18 | Checkpoint: rework shader input/output register mapping. | Brian | |
This is a step toward removing TGSI_ATTRIB_ tokens. Basically, when translating Mesa programs to TGSI programs, pass in input and output register re-maps, plus interpolation info. There's some known breakage (cubemap.c) so more to be done... | |||
2007-09-18 | Fix linux-dri-x86 target. | Michel Dänzer | |
2007-09-18 | Convert shader to an immutable state object. | Zack Rusin | |
2007-09-18 | Finishing up rename of the setup state to the rasterizer state. | Zack Rusin | |
2007-09-18 | move cso cache to the pipe directory | Zack Rusin | |
2007-09-18 | Fix a silly bug on setting samplers. | Zack Rusin | |
Bind when the currently bound state is /not/ the one we just found/created. | |||
2007-09-18 | converting the setup state to immutable object and renaming it to rasterizer ↵ | Zack Rusin | |
state | |||
2007-09-18 | Combing depth and stencil objects and making them immutable. | Zack Rusin | |
Converting depth and stencil objects into a single state object (d3d10 like) and making it immutable. | |||
2007-09-18 | Make sampler an immutable state object. | Zack Rusin | |
Switch the sample to be an immutable state object. | |||
2007-09-18 | Implementing a better hash, removing state_tracker dependency from the cache. | Zack Rusin | |
Replacing mesa's main hash with one that handles collisions, moving state_tracker related caching to the state tracker to keep cso cache independent of it. Cleanups. | |||
2007-09-18 | First stab at immutable state objects (create/bind/delete) | Zack Rusin | |
We want our state objects to be immutable, handled via the create/bind/delete calls instead of struct propagation. Only implementing the blend state to see how it would look like and work. | |||
2007-09-17 | Replace GL_TEXTURE_* tokens with PIPE_TEXTURE_* | Brian | |
Must have missed this a while back. This fixes cube mapping. | |||
2007-09-17 | Plug in selection/feedback code. | Brian | |
Not quite finished yet. Selection/feedback are done with a private instance of the 'draw' module in the state tracker. Not quite all the draw context's state is set yet, namely vertex format info. Hold off on that for a bit... | |||
2007-09-17 | selection/feedback support | Brian | |
2007-09-17 | Merge branch 'softpipe_0_1_branch' of ↵ | Brian | |
git+ssh://brianp@git.freedesktop.org/git/mesa/mesa into softpipe_0_1_branch | |||
2007-09-17 | Remove non-meaningful region_idle() interface | Keith Whitwell | |
This is already handled by the semanics of map(), etc. | |||
2007-09-17 | silence warning | Brian | |
2007-09-17 | Fix linux-dri-x86 build. | Michel Dänzer | |
2007-09-11 | Implement query object interface. | Brian | |
This replaces the temporary occlusion counter functions we had before. Added new ctx->Driver.WaitQuery() function which should block until the result is ready. Sketch out some code for vertex transformation feedback counters. | |||
2007-09-10 | merge buffer_unreference(), buffer_reference() | Brian | |
2007-09-10 | plug in rasterpos/feedback code | Brian | |
2007-09-10 | glRasterPos function | Brian | |
2007-08-25 | add missing files | keithw | |
2007-08-25 | fix frag vs vertex typo | keithw | |
2007-08-25 | add names to tracked state atoms to improve debug | keithw | |
2007-08-25 | checkpoint in constant tracking rework | Keith Whitwell | |
2007-08-25 | remove unneeded dirty flag | keithw | |
2007-08-24 | code re-org, minor improvements | Brian | |
2007-08-24 | check for USE_X86_ASM or SLANG_X86 in st_delete_program() | Brian | |
2007-08-24 | Add support for more surface types in sp_surface.c | Brian | |
replace PIPE_FORMAT_U_L8_A8 with PIPE_FORMAT_U_A8_L8 | |||
2007-08-24 | Hook-up SSE2 to VS. | michal | |
2007-08-24 | fix a tracking of changed lighting state | Brian | |
2007-08-24 | add some warnings about bitmaps/copypixels | Brian | |