summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/wgl/shared/stw_pixelformat.c
AgeCommit message (Collapse)Author
2009-05-30wgl: Use the right pixel format.José Fonseca
There is no current pixel format. Each HDC has its pixelformat which is kept by gdi and set/get via the SetPixelFormat/GetPixelFormat functions. Now the HDC's pixelformat is kept in the stw_framebuffer, which is created during the SetPixelFormat.
2009-05-08wgl: Export pixelformats with accumulation bits.José Fonseca
2009-05-08wgl: Include alpha bits in pixel format's cColorBits field.José Fonseca
2009-04-17wgl: Put commas in the right places.José Fonseca
2009-04-17wgl: Flip the pixel format order.José Fonseca
List 32bit pixel formats first, as nobody is interested in 16bit pixel formats nowadays.
2009-04-10wgl: Note down the gallium pixel formats, instead of re-guessing them.José Fonseca
2009-04-10wgl: Query the screen for supported formats.José Fonseca
2009-04-10wgl: Walk through the pixel formats combinations.José Fonseca
2009-04-10wgl: Keep copies of the PIXELFORMATDESCRIPTOR structures.José Fonseca
2009-04-10wgl: Slightly simplify pixelformat creation.José Fonseca
2009-04-10wgl: Move pixel format information into device structure.José Fonseca
2009-04-10wgl: Combine alpha pixelformat info in color.José Fonseca
2009-04-10stw: Reorder the pixelformats, so that no alpha pixelformats get chosen ↵José Fonseca
before alpha. Some applications might not handle a alpha visual when when they did not request for one.
2009-04-10stw: Don't make assumptions about integer size.José Fonseca
2009-04-09wgl: More symbol naming normalization.José Fonseca
2009-04-09stw: Normalize symbols prefix.José Fonseca
2009-03-20stw: Keep per-thread storage for current context and pixel format.Michal Krol
2009-03-03wgl: Support the same combinations of single buffer pixel formats.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-10stw: Hack for applications which use wglSetPixelFormat instead of ↵José Fonseca
SetPixelFormat.
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: move pixelformat_get/set to sharedKeith Whitwell
2009-01-28wgl: split into shared, (fake)wgl and icd directoriesKeith Whitwell