Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-04 | egl: Convert drivers to use typecast macros. | Chia-I Wu | |
Use macros to define the standard typecasts. This saves lots of typings. | |||
2010-02-04 | st/egl: Add missing headers to kms display. | Chia-I Wu | |
Add stdio.h and util/u_inlines.h to native_kms.c. | |||
2010-02-03 | st/egl: Add missing headers. | Vinson Lee | |
2010-02-04 | egl: fix implicit declaration of pipe_texture_reference adding u_inlines.h | Igor Oliveira | |
2010-02-04 | gallium: fix more missing includes from various places | Dave Airlie | |
nouveau/ dri st / vmware | |||
2010-02-03 | Merge branch 'gallium-embedded' | José Fonseca | |
2010-02-02 | gallium: Move deprecated pipe/internal/p_winsys_screen.h inside ↵ | José Fonseca | |
util/u_simple_screen.h | |||
2010-02-02 | gallium: Move p_thread.h and p_atomic.h out of gallium interfaces. | José Fonseca | |
Into os/os_thread.h and util/u_atomic.h respectively. | |||
2010-02-02 | gallium: pipe/p_inlines.h -> util/u_inlines.h | José Fonseca | |
2010-02-02 | vega: implement tgsi_ureg shaders cache | Igor Oliveira | |
2010-02-02 | vega: change tgsi asm by tgsi_ureg | Igor Oliveira | |
2010-02-02 | st/egl: Wrong context might be used in eglBindTexImage. | Chia-I Wu | |
If the pbuffer surface is current, gctx is set to the current context. Make sure it is set to OpenGL ES 1 context again before binding. | |||
2010-01-31 | st/dri: Remove duplicate type qualifier. | Vinson Lee | |
2010-01-31 | egl: Initialize display configs with the display. | Chia-I Wu | |
This changes _eglInitConfig to take the display as its argument. | |||
2010-01-31 | egl: Initialize display resources with their display. | Chia-I Wu | |
Change _eglInitSurface, _eglInitContext, and _eglInitImage to take an _EGLDisplay instead of an _EGLDriver. This is a more natural form, and plus, the display encodes information such as the extensions supported that might be required for attribute list parsing. | |||
2010-01-31 | st/egl: Do not ignore configs without a renderable type. | Chia-I Wu | |
Configs without a renderable type are still informative for programs such as eglinfo. | |||
2010-01-31 | st/egl: Remove egl_g3d_get_current_context. | Chia-I Wu | |
There is now _eglGetAPIContext that can return the current context of the given API. | |||
2010-01-30 | st/egl: eglBindTexImage should bind to an OpenGL ES texture. | Chia-I Wu | |
The spec says that it only works with OpenGL ES. | |||
2010-01-30 | egl: Rename Binding to CurrentContext in _EGLSurface. | Chia-I Wu | |
A context can be bound to a surface just like it can be bound to a thread. CurrentContext is a more consistent name. | |||
2010-01-28 | st/xorg: Update to new libkms interface but be backwards compatible | Jakob Bornecrantz | |
2010-01-28 | Merge commit 'origin/perrtblend' | Roland Scheidegger | |
Conflicts: src/gallium/drivers/softpipe/sp_screen.c src/gallium/include/pipe/p_defines.h | |||
2010-01-28 | regress: Add vertex shaders tests for constant buffers. | Michal Krol | |
2010-01-28 | regress: Add fragment shader test for one-dimensional constant buffers. | Michal Krol | |
2010-01-28 | regress: Add two-dimension constant buffer test. | Michal Krol | |
2010-01-28 | python: Link to ws2_32 on windows. | Michal Krol | |
2010-01-28 | regress: Fix shader header. | Michal Krol | |
2010-01-28 | egl: Migrate drivers to use _eglBindContext. | Chia-I Wu | |
_eglMakeCurrent is a big hammer that is not easy to use. Migrate drivers to use _eglBindContext and un-export _eglMakeCurrent. | |||
2010-01-28 | egl: eglMakeCurrent should accept an uninitialized display. | Chia-I Wu | |
When no context or surface are given, the display is allowed to be uninitialized. Most drivers cannot handle an uninitialized display. But they are updated to at least throw a fatal message. | |||
2010-01-28 | st/xorg: Remove unnecessary headers. | Vinson Lee | |
2010-01-28 | st/dri: Remove unnecessary headers. | Vinson Lee | |
2010-01-26 | egl: Remove _eglGetCurrentSurface and _eglGetCurrentDisplay. | Chia-I Wu | |
They have little use in drivers since drivers need to work for multiple current contexts. | |||
2010-01-25 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
Conflicts: src/mesa/drivers/dri/intel/intel_screen.c src/mesa/drivers/dri/intel/intel_swapbuffers.c src/mesa/drivers/dri/r300/r300_emit.c src/mesa/drivers/dri/r300/r300_ioctl.c src/mesa/drivers/dri/r300/r300_tex.c src/mesa/drivers/dri/r300/r300_texstate.c | |||
2010-01-25 | st/xorg: Fix crash on resize with libkms | Jakob Bornecrantz | |
2010-01-25 | st/mesa: handle EXT_draw_buffers2 per rendertarget blend enables / colormasks | Roland Scheidegger | |
uses the new gallium per-rt blend functionality | |||
2010-01-25 | vega: fix incorrect samplers, textures indexes in blend_bind_samplers() | Igor Oliveira | |
Fixes fd.o bug 25863. Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-01-25 | vega: don't enable blending if not necessary | Roland Scheidegger | |
In some places blending was enabled even though it wasn't necessary. Also remove a (bogus) reenabling of color writes, which wasn't really used. | |||
2010-01-25 | xorg: do not enable unnecessary blending for xv | Roland Scheidegger | |
2010-01-25 | st/python: adapt to blend changes | Roland Scheidegger | |
2010-01-25 | vega: adapt to blend changes | Roland Scheidegger | |
2010-01-25 | xorg: adapt to blend changes | Roland Scheidegger | |
2010-01-25 | st/xorg: Improve options and print them to log | Jakob Bornecrantz | |
Set 2D acceleration to off by default Get fallback debugging from the Xorg config Also print if 3D acceleration is enabled | |||
2010-01-25 | st/xorg: Export helper function for detecting modesetting | Jakob Bornecrantz | |
2010-01-25 | st/xorg: Fix warning | Jakob Bornecrantz | |
2010-01-25 | egl: Native types are renamed in EGL 1.3. | Chia-I Wu | |
Rename Native*Type to EGLNative*Type. | |||
2010-01-25 | egl: check if driver_name is null | Igor Oliveira | |
2010-01-24 | egl: Make surfaces and contexts resources. | Chia-I Wu | |
Turn _EGLSurface and _EGLContext into _EGLResource so that they can be managed uniformly. | |||
2010-01-23 | st/vega: Clean up Makefile. | Chia-I Wu | |
2010-01-23 | st/es: Pass -linker and -ldflags to mklib. | Chia-I Wu | |
2010-01-22 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
Conflicts: src/gallium/auxiliary/draw/draw_context.c src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c src/gallium/auxiliary/pipebuffer/Makefile src/gallium/auxiliary/pipebuffer/SConscript src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c src/gallium/auxiliary/tgsi/tgsi_scan.c src/gallium/drivers/i915/i915_surface.c src/gallium/drivers/i915/i915_texture.c src/gallium/drivers/llvmpipe/lp_setup.c src/gallium/drivers/llvmpipe/lp_tex_sample_c.c src/gallium/drivers/llvmpipe/lp_texture.c src/gallium/drivers/softpipe/sp_prim_vbuf.c src/gallium/state_trackers/xorg/xorg_dri2.c src/gallium/winsys/drm/intel/gem/intel_drm_api.c src/gallium/winsys/drm/nouveau/drm/nouveau_drm_api.c src/gallium/winsys/drm/radeon/core/radeon_drm.c src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c src/mesa/state_tracker/st_cb_clear.c | |||
2010-01-22 | st/egl_g3d: Rename to st/egl. | Chia-I Wu | |
Simply the name to egl. |