summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2008-05-02gallium: Add texture usage flags, special-case allocation of display targetsKeith Whitwell
For many envirionments it's necessary to allocate display targets in a window-system friendly manner. Add facilities so that a driver can tell if a texture is likely to be used to generate a display surface and if use special allocation paths if necessary. Hook up softpipe to call into the winsys->surface_alloc_storage() routine in this case, though we probably want to change that interface slightly also.
2008-05-02gallium: remove usage of winsys->surface_alloc_storage from state trackerKeith Whitwell
Allocate a texture containing storage instead. Also clean up ACCUM buffer allocation slightly -- drivers will need some changes to texture allocation logic to accomodate the concept of a texture that will only as image storage by the CPU, but it's cleaner than it was.
2008-05-02gallium: fix build after mergeKeith Whitwell
2008-05-02Merge branch 'gallium-0.1' into gallium-tex-surfacesKeith Whitwell
2008-05-02revert mode change back to 644Alan Hourihane
2008-05-02inline -> INLINEAlan Hourihane
2008-05-02Some changed for non-C99 compilersAlan Hourihane
2008-05-02re-add pipe_surface map/unmap inlinesKeith Whitwell
2008-05-02cso: can memcmp-compare pipe_framebuffer_state now it includes fb dimensionsKeith Whitwell
2008-05-02tgsi: Do not assume IN and OUT registers are declared sequentially.Michal Krol
2008-05-02tgsi: Fix build on Win32.Michal Krol
2008-05-02tgsi: Dump destination register modulate modifier.Michal Krol
2008-05-01gallium: temporarily disable broken SSE2 code for ARL opcodeBrian
2008-05-01gallium: implement TGSI_OPCODE_EXPBrian
2008-05-01gallium: implement TGSI_OPCODE_LOGBrian
2008-05-01added cast for MSVCBrian Paul
2008-05-01gallium: remove the unused softpipe_winsys codeBrian Paul
The struct is still there though until all winsys layers are updated
2008-05-01gallium: use screen->tex_surface_release()Brian Paul
2008-05-01tgsi: remove some bogus win vs. linux crudKeith Whitwell
Pass arguments properly in linux now. Still need to change this to use a single calling convention on both platforms.
2008-05-01rtasm: learn another version of pushKeith Whitwell
2008-05-01draw: label fn args -- shouldn't this be defined where the fn is created?Keith Whitwell
2008-05-01rtasm: fix labels after (not so) recent change to allow dynamic fn growthKeith Whitwell
Using char * for labels doesn't work if you realloc the function during assembly and free the old storage...
2008-05-01i915: avoid crashing on bad parameterKeith Whitwell
2008-05-01i915: fix warningKeith Whitwell
2008-05-01softpipe: fix warningKeith Whitwell
2008-05-01sct: fix bug in remove_context_from_surfaceKeith Whitwell
2008-05-01gallium: Set sampler->min_lod instead of always reallocating pipe_textures.Michel Dänzer
2008-05-01gallium: Notify driver of texture updates in util_blit_pixels().Michel Dänzer
2008-05-01tgsi: restore HIGH_PRECISION settingKeith Whitwell
2008-05-01tgsi: add some const qualifiers to immediate pointersKeith Whitwell
2008-05-01mesa: squash harmless warningKeith Whitwell
2008-05-01rtasm: assert stack is fully popped in returnKeith Whitwell
2008-05-01draw: avoid aliasing warningKeith Whitwell
2008-05-01tgsi: use EBX everywhere, be sure to push/pop itKeith Whitwell
2008-05-01tgsi: use x86_fn_arg instead of get_argument() -- it knows about push/pops ↵Keith Whitwell
to the stack
2008-05-01tgsi: use ESI instead of EBX on non-win32 platformsKeith Whitwell
2008-05-01gallium: do something sensible on the error path to try to avoid crashing in ↵Keith Whitwell
release builds
2008-05-01Fix build problem with MSVCAlan Hourihane
2008-05-01Add Brian's explanation for inheritance in C.José Fonseca
2008-05-01gallium: Add newline to eof.José Fonseca
2008-05-01draw: squash warningsKeith Whitwell
2008-05-01draw: turn on SSE swizzle codeKeith Whitwell
2008-05-01gallium: add information to surface to identify which texture image it is ↵Keith Whitwell
pointing at
2008-05-01softpipe: missing fileKeith Whitwell
2008-05-01softpipe: use CPU flags for mappingKeith Whitwell
But when creating surfaces, adjust incoming flags from GPU->CPU usage.
2008-05-01gallium: tex surface checkpointKeith Whitwell
2008-04-30gallium: remove old filesBrian Paul
2008-04-30gallium: fix texture border removal bugBrian Paul
2008-04-30gallium: use the newer PIPE_FORMAT_x_UNORM format namesBrian Paul
2008-04-30gallium: rename old PIPE_FORMAT_U_I8 with PIPE_FORMAT_I8_UNORM, etc.Brian Paul
Now all the packed color types are consistantly named. Added temporary #defines for the old names until all drivers are updated.