summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/wgl/icd
AgeCommit message (Collapse)Author
2009-09-23wgl: Flatten the source tree.José Fonseca
It is easier to have the WGL API on top of the ICD callbacks as Microsoft's own implementation does, than to have a seperate shared entity. This source reorganization is in antecipation of that.
2009-09-23wgl: Fix debug_printf format specifiers.José Fonseca
2009-05-30wgl: Fix debugging output.José Fonseca
2009-05-08wgl: Implement ShareLists.José Fonseca
2009-05-08wgl: Implemente SwapLayerBuffers.José Fonseca
2009-04-27stw: Use a statically initiallized gl proc table.José Fonseca
It doesn't change anyway.
2009-04-09wgl: More symbol naming normalization.José Fonseca
2009-02-24st/wgl: silence some debugKeith Whitwell
2009-02-19wgl: Share more code between icd and standalone driver.José Fonseca
2009-02-18util: Move p_debug.h into util module.José Fonseca
The debug functions depend on several util function for os abstractions, and these depend on debug functions, so a seperate module is not possible.
2009-02-10wgl: return before locking if stw_icd is NULLKeith Whitwell
2009-02-10Merge commit 'origin/gallium-0.2' into gallium-0.2Keith Whitwell
Conflicts: src/gallium/state_trackers/wgl/icd/stw_icd.c
2009-02-10wgl: mutex-protect the shared stw_icd structKeith Whitwell
2009-02-10vmw/icd: remove bogus current_context valueKeith Whitwell
2009-02-10wgl: Fix null pointer reference.José Fonseca
2009-02-10wgl: s/0x%p/%p/gJosé Fonseca
Rather not have 0x prefix, than 0x0x in certain platforms.
2009-01-28stw: use proper stw_context pointers in shared interfaceKeith Whitwell
Move away from hglrc.
2009-01-28svga: remove pixelformat helpers from stw shared interfaceKeith Whitwell
Keep these internal structs private to wgl/shared. Pull in some pixelformat choosing code from wgl/wgl to avoid exporting them more generally.
2009-01-28stw: move get_proc_address and extension functions to sharedKeith Whitwell
2009-01-28stw: use shared version of make current in icd codeKeith Whitwell
2009-01-28stw: more swapbuffers refactoringKeith Whitwell
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-28stw: rename stw_wgl_ --> stw_Keith Whitwell
2009-01-28stw: move pixelformat_get/set to sharedKeith Whitwell
2009-01-28stw: move pixelformat_describe to sharedKeith Whitwell
2009-01-28wgl: move context functions to sharedKeith Whitwell
2009-01-28wgl: split into shared, (fake)wgl and icd directoriesKeith Whitwell