summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/wgl/shared/stw_device.h
AgeCommit message (Collapse)Author
2009-07-06wgl: Make the stw_framebuffer destructions threadsafe.José Fonseca
Ensure no other thread is accessing a framebuffer when it is being destroyed by acquiring both the global and per-framebuffer mutexes. Normal access only needs the global lock to walk the linked list and acquire the per-framebuffer mutex.
2009-05-08wgl: Grow the maximum number of pixel formats to cope with the new accum ↵José Fonseca
pixel formats. Fix a segfault when using softpipe.
2009-04-10wgl: Walk through the pixel formats combinations.José Fonseca
2009-04-10wgl: Move pixel format information into device structure.José Fonseca
2009-04-09wgl: Move the framebuffer list to the device. Avoid recursive locking.José Fonseca
2009-04-08wgl: Integrate the trace driver on debug builds.José Fonseca
2009-03-20stw: Use u_handle_table to maintain context list.Michal Krol
2009-02-19wgl: Share more code between icd and standalone driver.José Fonseca
2009-02-18wgl: Report memory leaks.José Fonseca
2009-01-28wgl: split device structs, move swapbuffers to sharedKeith Whitwell
Each of icd, shared and wgl now have the opportunity to maintain their own per-device structs, which should reduce the need for these modules to be looking into each others structures.
2009-01-28wgl: split into shared, (fake)wgl and icd directoriesKeith Whitwell