Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: Add "shader/" path to #include statements in shader parser/lexer sources | Alan Coopersmith | 2010-01-22 | 4 | -26/+26 |
| | | | | | | | | Signed-off-by: Alan Coopersmith <[email protected]> Note sure why the compiler's -I paths aren't doing the job, but this is OK. Signed-off-by: Brian Paul <[email protected]> | ||||
* | glapi: clean-up and simplify glapi_nop.c code | Brian Paul | 2010-01-22 | 3 | -70/+25 |
| | | | | | | Removed _glapi_noop_enable_warnings() and _glapi_set_warning_func(). Just check the DEBUG env vars and call fprintf(stderr) with a warning message instead. | ||||
* | glapi: split the no-op dispatch code into new glapi_nop.c file | Brian Paul | 2010-01-22 | 7 | -84/+127 |
| | | | | This unclutters the glapi.c file a bit. | ||||
* | glapi: fix int->pointer conversions warnings in no-op functions | Brian Paul | 2010-01-22 | 1 | -1/+1 |
| | |||||
* | gallium/draw: fix-up comments, whitespace | Brian Paul | 2010-01-22 | 1 | -6/+5 |
| | |||||
* | gallium/draw: replace int with boolean | Brian Paul | 2010-01-22 | 1 | -8/+8 |
| | |||||
* | r600: enable sampler lod* bits | Andre Maasikas | 2010-01-22 | 1 | -10/+26 |
| | | | | bits, settings derived from testing, might contain some errors... | ||||
* | r600: update vport z & clipping when depth_clamp is changed | Andre Maasikas | 2010-01-22 | 1 | -0/+4 |
| | | | | fixes piglit depth_clamp | ||||
* | r600: fix brownbag, only align if we are dealing with cubemap | Andre Maasikas | 2010-01-22 | 1 | -1/+1 |
| | |||||
* | r600: cubemap levels seem to be aligned to 8 images | Andre Maasikas | 2010-01-22 | 1 | -0/+6 |
| | |||||
* | radeon/fbo: flush rendering before generating mipmaps | Andre Maasikas | 2010-01-22 | 1 | -0/+7 |
| | | | | or maybe should flush(also) in finish_render_texture... | ||||
* | radeon/fbo: use correct depth texture offset for depth textures | Andre Maasikas | 2010-01-22 | 3 | -26/+4 |
| | |||||
* | r600: enable draw_offset | Andre Maasikas | 2010-01-22 | 1 | -2/+1 |
| | | | | fixes some fbo cases (mipmaps, cube textures ..) | ||||
* | st/egl_g3d: Rename to st/egl. | Chia-I Wu | 2010-01-22 | 30 | -9/+9 |
| | | | | Simply the name to egl. | ||||
* | winsys/drm: Update the options of mklib in Makefile.egl_g3d. | Chia-I Wu | 2010-01-22 | 1 | -1/+2 |
| | | | | Pass -linker, -ldflags, and $(MKLIB_OPTIONS) to mklib. | ||||
* | egl: Remove egl_softpipe. | Chia-I Wu | 2010-01-22 | 5 | -1209/+1 |
| | | | | | | With the addition egl_x11_swrast, egl_softpipe is sort of deprecated. The new driver serves the same purpose as egl_softpipe does. It is based on egl_g3d and provides more features. | ||||
* | winsys/drm: Add swrast. | Chia-I Wu | 2010-01-22 | 5 | -0/+48 |
| | | | | The swrast winsys always returns NULL when drm_api_create is called. | ||||
* | st/egl: Remove the egl state tracker. | Chia-I Wu | 2010-01-22 | 12 | -1244/+0 |
| | | | | | | The egl_g3d state tracker has support for KMS, and the support is based on the egl state tracker. As egl_g3d provides more features, it should be better to keep only egl_g3d to unify the efforts. | ||||
* | egl: Remove USING_EGL and the related drivers. | Chia-I Wu | 2010-01-22 | 9 | -1987/+0 |
| | | | | | They do not build for a long while and there seems to be no active users. It might be better for them to live in the git histroy. | ||||
* | egl: Remove the demo driver. | Chia-I Wu | 2010-01-22 | 2 | -321/+0 |
| | | | | | The demo driver has outdated. It is suggested to look at any of the drivers that is functioning. | ||||
* | st/egl_g3d: Use glxinit.c from egl_xdri. | Chia-I Wu | 2010-01-22 | 4 | -590/+10 |
| | | | | | It is used to fetch the GLX visuals/fbconfigs. Use egl_xdri's version to avoid duplication. It might be better to rewrite that part though. | ||||
* | egl_xdri: Add support for DRISW. | Chia-I Wu | 2010-01-22 | 3 | -15/+42 |
| | | | | | Try DRISW if both DRI2 and DRI fail. It can also be forced by setting EGL_SOFTWARE. When DRISW is used, single-buffered modes are ignored. | ||||
* | egl_xdri: Flush commands on context switch and buffer swap. | Chia-I Wu | 2010-01-22 | 1 | -6/+24 |
| | | | | The corresponding DRI functions does not flush for us. | ||||
* | egl_xdri: Report only OpenGL support. | Chia-I Wu | 2010-01-22 | 1 | -9/+2 |
| | | | | | It reported OpenGL ES support because some demos did not set EGL_RENDERABLE_TYPE correctly. The demos are fixed. | ||||
* | egl_xdri: Do not reinitialize in __glXInitialize. | Chia-I Wu | 2010-01-22 | 3 | -25/+78 |
| | | | | | | __glXInitialize should return the same GLX display for the same X display. This issue is triggered by a35f6bb207efe3c959bbd16a37f2049e5aceeea9. | ||||
* | egl_glx: Report only OpenGL support. | Chia-I Wu | 2010-01-22 | 1 | -10/+3 |
| | | | | | It reported OpenGL ES support because some demos did not set EGL_RENDERABLE_TYPE correctly. The demos are fixed. | ||||
* | egl: Update driver Makefiles. | Chia-I Wu | 2010-01-22 | 2 | -134/+23 |
| | | | | Update to use the new Makefile.template. | ||||
* | egl: Add Makefile.template for EGL drivers. | Chia-I Wu | 2010-01-22 | 1 | -0/+51 |
| | |||||
* | winsys/drm: Update Makefile.template. | Chia-I Wu | 2010-01-22 | 1 | -8/+1 |
| | | | | | Mainly to respect LDFLAGS and remove unused target $(LIBNAME_EGL). This is based on the patch by Tomáš Chvátal <[email protected]>. | ||||
* | gallium: fix conditional rendering comment | Brian Paul | 2010-01-21 | 1 | -1/+1 |
| | |||||
* | gallium/docs: document conditional rendering | Brian Paul | 2010-01-21 | 1 | -0/+36 |
| | |||||
* | gallium: updated comments, whitespace fixes | Brian Paul | 2010-01-21 | 1 | -15/+15 |
| | |||||
* | mesa: minor whitespace fix | Brian Paul | 2010-01-21 | 1 | -1/+1 |
| | |||||
* | mesa: support for GL_ARB_fragment_coord_conventions | Luca Barbieri | 2010-01-21 | 5 | -0/+20 |
| | | | | Signed-off-by: Brian Paul <[email protected]> | ||||
* | softpipe: added region assertions in softpipe_get_tex_transfer() | Brian Paul | 2010-01-21 | 1 | -0/+4 |
| | |||||
* | dri: Remove unnecessary glapi headers. | Chia-I Wu | 2010-01-21 | 6 | -9/+0 |
| | | | | They are not used at all. | ||||
* | Do not include glapi/dispatch.h outside Mesa core. | Chia-I Wu | 2010-01-21 | 6 | -6/+10 |
| | | | | | Include the glapi*.h directly instead. glapi/dispatch.h became a Mesa core header since 22884db174b9fb0736cec1c6a192f8b9a97500c1. | ||||
* | gallium/i965: Make brw_batchbuffer prototypes match in source & header | Alan Coopersmith | 2010-01-20 | 2 | -3/+3 |
| | | | | | Signed-off-by: Alan Coopersmith <[email protected]> Signed-off-by: Brian Paul <[email protected]> | ||||
* | radeong: Fix EGL driver names. | Corbin Simpson | 2010-01-20 | 2 | -2/+2 |
| | | | | Using "radeon" instead of "radeong" because we don't have classic EGL. | ||||
* | Fix touching live system during install. | Tomas Chvatal | 2010-01-20 | 1 | -1/+1 |
| | |||||
* | r200: re-adding missing pitch alignment check in blit code | Alex Deucher | 2010-01-20 | 1 | -0/+4 |
| | | | | lost after switch to common code | ||||
* | mesa: replace questionable CPU_TO_LE32 macro with function | Brian Paul | 2010-01-20 | 1 | -6/+9 |
| | |||||
* | Copy __FUNCTION__ portability #defines from mesa/compiler.h to eglcompiler.h | Alan Coopersmith | 2010-01-20 | 1 | -0/+18 |
| | | | | | Signed-off-by: Alan Coopersmith <[email protected]> Signed-off-by: Brian Paul <[email protected]> | ||||
* | r200: fix some breakage after move to common blit code | Alex Deucher | 2010-01-20 | 1 | -4/+0 |
| | |||||
* | r200: fix typo in 76cf2618327a7f008dcfd0d91d64d6d9e01f9a9c | Alex Deucher | 2010-01-20 | 1 | -1/+1 |
| | | | | noticed by Maciej on IRC. | ||||
* | st/egl_g3d: Add support for driver probe. | Chia-I Wu | 2010-01-20 | 2 | -11/+108 |
| | | | | | Hook the drv->Probe callback to allow the drivers to probe displays. The loading of state trackers is delayed to avoid unnecessary loading. | ||||
* | st/egl_g3d: Add support for probe to native displays. | Chia-I Wu | 2010-01-20 | 5 | -7/+146 |
| | | | | | | The functions can be used to check if a display is supported without creating a struct native_display. It uses a probe object that can be shared across drivers. | ||||
* | egl: Add a simple cache for driver probe. | Chia-I Wu | 2010-01-20 | 2 | -0/+56 |
| | | | | | | In current design, multiple drivers will probe the same display and the best driver is determined. The cache can be used by the drivers to store and share the probed data. | ||||
* | egl: Improve driver matching. | Chia-I Wu | 2010-01-20 | 3 | -20/+35 |
| | | | | | Make drv->Probe return a score so that the matching can be done by finding the driver with the highest score. | ||||
* | egl: Rename _EGL_PLATFORM_X to _EGL_PLATFORM_POSIX. | Chia-I Wu | 2010-01-20 | 2 | -9/+9 |
| | | | | | The macro is used to determine if dlfcn.h or dirent.h is available. POSIX is a better name than X in such case. |