summaryrefslogtreecommitdiffstats
path: root/src/gallium/winsys
Commit message (Collapse)AuthorAgeFilesLines
* xlib: Revert destroying pipe_screen (temporary).José Fonseca2008-08-191-0/+3
|
* scons: Fix build.Michal Krol2008-08-181-1/+1
|
* if we can't find a mode, return first. At least we shouldAlan Hourihane2008-08-171-5/+5
| | | | | see the top left portion if we've got larger screens on other CRTC's
* consolidate intel directories.Alan Hourihane2008-08-1751-252/+30
| | | | | | we now have src/gallium/winsys/drm/intel/{common,dri,egl}
* rather than use CRTC 1 (aka LVDS), try and setup all connectors/encodersAlan Hourihane2008-08-171-19/+92
| | | | and get the same output on all.
* xlib: Kill xmesa_surface.José Fonseca2008-08-151-43/+19
| | | | | | | | | | A winsys cannot expect that the surfaces passed display_surface are the surfaces it created, as surface are now in generate texture views created by pipe_screen. Indeed, the fact it was working so far was mere luck. This fixes a weird tiled output when using the trace pipe driver. Winsys' surfaces should die.
* xlib: Use trace usage.José Fonseca2008-08-142-12/+8
|
* gdi: Remove CVS keyword.José Fonseca2008-08-121-2/+0
|
* trace: Trace pipe_winsys calls.José Fonseca2008-08-091-1/+6
|
* gallium: use PIPE_FORMAT_X8Z24_UNORM for 24-bit Z but no stencilBrian Paul2008-08-071-0/+5
|
* xlib: Integrate with the trace pipe driver.José Fonseca2008-08-072-25/+42
|
* i915: intel_flush_frontbuffer does workJakob Bornecrantz2008-07-231-5/+3
|
* i915: Ops should not have pushed thatJakob Bornecrantz2008-07-133-144/+169
| | | | This reverts commit 930a863c4f6f11d0fd5cf396ef76054d52c69b9f.
* i915: WIP swap reworkJakob Bornecrantz2008-07-133-169/+144
|
* gallium: Make dri drivers create a egl_name_dri.so if supportedJakob Bornecrantz2008-07-112-1/+10
|
* egl: added EGL_OPENVG_API case (allow all APIs)Brian Paul2008-07-101-0/+1
|
* egl: plug a small memleakZack Rusin2008-07-091-0/+1
|
* i915: Takedown EGL screenJakob Bornecrantz2008-07-081-10/+71
|
* i915: Use deviceID in EGL device createJakob Bornecrantz2008-07-081-1/+1
|
* i915: Complete the screen -> device renamingJakob Bornecrantz2008-07-084-10/+10
|
* i915: Renamed intel_screen to intel_deviceJakob Bornecrantz2008-07-086-23/+23
| | | | | | The renameing makes more sense, why because: In egl you have a display/driver/device as the basis, and you have screens as outputs.
* i915: Fix wrong pointer to cleanupJakob Bornecrantz2008-07-071-1/+1
|
* i915: Fix EGL make currentJakob Bornecrantz2008-07-071-5/+8
|
* i915: More cleanup of displayJakob Bornecrantz2008-07-071-0/+2
|
* i915: Fetch the real deviceID for EGLJakob Bornecrantz2008-07-073-4/+34
|
* i915: Destruction of surface, context and device in EGLJakob Bornecrantz2008-07-074-9/+65
|
* i915: Fix EGL version and nameJakob Bornecrantz2008-07-051-1/+2
|
* i915: Added a intel be function to wrap a drm bo handleJakob Bornecrantz2008-07-053-16/+52
|
* i915: Fix haveDepth and haveStencil for visual in EGLJakob Bornecrantz2008-07-051-0/+2
|
* i915: Clean up intel_egl.c a bitJakob Bornecrantz2008-07-041-21/+3
|
* i915: EGL almost works againJakob Bornecrantz2008-07-036-40/+67
|
* i915: Last reference to surface -> pitchJakob Bornecrantz2008-07-011-1/+1
|
* egl: set config's EGL_CONFORMANT, EGL_RENDERABLE_TYPE, EGL_SURFACE_TYPE ↵Brian Paul2008-06-281-0/+7
| | | | attributes
* egl: helps if the stride is rightZack Rusin2008-06-271-1/+3
|
* eh, we need a buildbot... fix the compilationZack Rusin2008-06-272-6/+4
|
* gallium: handle msaaRoland Scheidegger2008-06-271-2/+4
|
* egl: These changes allow an eglBindAPI(EGL_OPENGL_ES_API) to succeed, and to ↵Robert Ellison2008-06-271-0/+1
| | | | | | | | | | | | | | work correctly with GLES1 and GLES2. - egl_xdri.c just sets the EGL_OPENGL_ES_BIT as well as the EGL_OPENGL_BIT in ClientAPIsMask - eglconfig.c allows the renderable type to include EGL_OPENGL_ES2_BIT as well as EGL_OPENGL_ES_BIT. - egl_xlib.c sets the EGL_NATIVE_RENDERABLE attribute to EGL_FALSE for all softpipe configurations. (Otherwise, an eglChooseConfig() that looks for particular values of EGL_NATIVE_RENDERABLE will fail.)
* i915: Fix the last of the stride/pitch changesJakob Bornecrantz2008-06-272-3/+3
|
* gdi: Update for cpp removal.José Fonseca2008-06-271-3/+5
|
* gallium: Drop pipe_texture->cpp and pipe_surface->cpp.José Fonseca2008-06-273-27/+37
| | | | | The chars-per-pixel concept falls apart with compressed and yuv images, where more than one pixel are coded in a single data block.
* scons: Fix i965/xlib build.José Fonseca2008-06-271-1/+6
|
* i915: Create a texture and surface for shared frontbufferJakob Bornecrantz2008-06-242-3/+66
|
* i915: Moved screen creation to intel_be_deviceJakob Bornecrantz2008-06-245-28/+26
|
* dri/intel: Use standard integer types.José Fonseca2008-06-241-2/+2
|
* gdi: Update for surface_alloc_storage changes.José Fonseca2008-06-241-1/+2
|
* egl: added cpp assertions/sanity checksBrian Paul2008-06-201-0/+2
|
* egl: added null ptr checksBrian Paul2008-06-201-1/+4
|
* egl: use dlsym() to try to identify APIsBrian Paul2008-06-191-2/+45
|
* egl: omit libmesa.a glapi.c from libraryBrian Paul2008-06-181-2/+6
|
* egl: call st_get_proc_address()Brian Paul2008-06-181-5/+1
|