Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-02-22 | nv50: delay uploads until transfer object is destroyed | Ben Skeggs | |
It's possible a state tracker will map/unmap a transfer object many times. Delaying upload until the object is destroyed will prevent unnecessary uploads to the GPU. Also fixing a typo here, was unmapping the wrong buffer on transfer_unmap! | |||
2009-02-20 | gallium: Improve makefiles for libraries | Jakob Bornecrantz | |
The template makefile that most libraries in gallium included was based on dri and had a bunch unrelevant junk in it. Update it and improve the depending makefiles. | |||
2009-02-20 | nv50: remove unused variable | Ben Skeggs | |
2009-02-20 | nv50: fix occlusion queries | Ben Skeggs | |
Left behind from some gallium changes a while back.. | |||
2009-02-20 | nv50: rework for texture_transfer changes | Ben Skeggs | |
2009-02-07 | nouveau: Need to surface_copy() without a pipe context. | Younes Manton | |
2009-02-05 | nv50: stop using nouveau_push.h, it's evil | Ben Skeggs | |
2009-02-05 | nv50: move 2d blit/fill code into pipe driver | Ben Skeggs | |
2009-02-04 | nouveau: get things building/running again after pipe_surface.buffer removal | Ben Skeggs | |
Don't look at nouveau_winsys_pipe.h... I promise it's temporary! | |||
2009-02-04 | nouveau: link against libdrm_nouveau (installed with libdrm) | Ben Skeggs | |
2009-02-02 | gallium: remove pipe_buffer from surfaces | Zack Rusin | |
this change disassociates, at least from the driver perspective, the surface from buffer. surfaces are technically now views on the textures so make it so by hiding the buffer in the internals of textures. | |||
2009-01-31 | gallium: initialize simple screen in drivers | Zack Rusin | |
2009-01-30 | gallium: make p_winsys internal | Zack Rusin | |
move it to pipe/internal/p_winsys_screen.h and start converting the state trackers to the screen usage | |||
2009-01-29 | gallium: give the screen priority when it comes to buffer allocations | Zack Rusin | |
allows the driver to overwrite buffer allocation, first step on the way to making winsys interface internal to the drivers. state trackers and the code above it will go through the screen | |||
2009-01-27 | gallium: it's a reference value, not a reference number | Zack Rusin | |
2009-01-27 | gallium: standardize api on the prefix "nr" | Zack Rusin | |
2009-01-27 | gallium: standardize naming of masks | Zack Rusin | |
2009-01-27 | gallium: standardize on stride instead of pitch in the interface | Zack Rusin | |
2009-01-20 | gallium: Remove the standalone surfaces. | José Fonseca | |
This commit is mostly just a cosmetic change that cleans-up the interfaces, replacing pipe_winsys::surface_* calls by /** * Allocate storage for a display target surface. * * Often surfaces which are meant to be blitted to the front screen (i.e., * display targets) must be allocated with special characteristics, memory * pools, or obtained directly from the windowing system. * * This callback is invoked by the pipe_screenwhen creating a texture marked * with the PIPE_TEXTURE_USAGE_DISPLAY_TARGET flag to get the underlying * buffer storage. */ struct pipe_buffer *(*surface_buffer_create)(struct pipe_winsys *ws, unsigned width, unsigned height, enum pipe_format format, unsigned usage, unsigned *stride); Most drivers were updated but not all were tested. Use the softpipe pipe driver and the xlib winsys changes as a reference when fixing other drivers. | |||
2009-01-13 | nv50: fix progs/tests/manytex | Ben Skeggs | |
Previously all squares were textured with the same texture.. not quite what the demo was supposed to look like! | |||
2009-01-13 | nv50: get glxgears showing all 3 gears instead of 1!! | Ben Skeggs | |
This fixes a lot of other things where not all the geometry got drawn also. | |||
2009-01-13 | nv50: change some magic reg, makes more things work | Ben Skeggs | |
No real idea what this does.. but a lot of things that misrendered and made the GPU throw a DATA_ERROR now work.. I'm wondering what side-effects we'll see from this :) | |||
2009-01-13 | nv50: add DXTn formats | Ben Skeggs | |
2009-01-13 | nv50: shadow mapping | Ben Skeggs | |
2009-01-13 | nv50: aniso | Ben Skeggs | |
2009-01-13 | nv50: occlusion queries | Ben Skeggs | |
Not quite working, but the general idea is right I think. | |||
2009-01-13 | nv50: implement KIL enough for progs/fp/kil to work | Ben Skeggs | |
2009-01-12 | nv50: make rtt work again | Ben Skeggs | |
2009-01-12 | nv50: fix handling of depth textures | Ben Skeggs | |
2009-01-12 | nv50: another typo.. | Ben Skeggs | |
2009-01-12 | nv50: fix assertion failure | Ben Skeggs | |
2009-01-12 | nv50: remove previous hack to manage tiled surfaces | Ben Skeggs | |
2009-01-12 | nv50: fix a typo and a thinko | Ben Skeggs | |
2009-01-12 | nv50: enable npot textures | Ben Skeggs | |
2009-01-12 | nv50: disable shader debug | Ben Skeggs | |
2009-01-12 | nv50: any cpu access to a texture is done on its backing images | Ben Skeggs | |
Still a little dodgy: - RTT will hit an assertion (hopefully!) and fail - 3D textures with depth >= 32 will cause bad things to happen | |||
2009-01-12 | nv50: create buffers for each image that makes up a texture | Ben Skeggs | |
2009-01-08 | gallium: Replace uint64 by standard uint64_t. | José Fonseca | |
uint64 is not (so?) standard, and often redefined by third parties, causing name clashes. | |||
2009-01-06 | nv50: fill image unit index in TEX varients | Ben Skeggs | |
2009-01-06 | nv50: fix crash in nv50_program_destroy | Ben Skeggs | |
2009-01-06 | nv50: working towards 3D textures | Ben Skeggs | |
2009-01-06 | nv50: slightly better miptree allocation | Ben Skeggs | |
I swear this didn't work last time I tried it.. Anyhow, still only suitable for 2D miptrees - more coming once I know the layout. | |||
2009-01-06 | nv50: add TXP to TEX case.. not correct, but anyway.. | Ben Skeggs | |
2009-01-06 | nv50: indentation for TEX is a little overenthusiastic | Ben Skeggs | |
2009-01-06 | nv50: ensure we actually get contiguous regs for TEX insn. | Ben Skeggs | |
Still many more horrible things to fix here... | |||
2008-12-16 | nouveau: return a value for PIPE_CAP_MAX_VERTEX_TEXTURE_UNITS | Ben Skeggs | |
2008-09-18 | nv50: use 3D engine clears, 2D engine doesn't understand zeta formats | Ben Skeggs | |
2008-09-18 | nv50: hack surface alloc a bit for now | Ben Skeggs | |
2008-09-11 | nouveau: gallium directory structure changed again.. | Ben Skeggs | |
2008-08-11 | nouveau: pf_sprint_name -> pf_name | Ben Skeggs | |