Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-22 | mesa: Add "shader/" path to #include statements in shader parser/lexer sources | Alan Coopersmith | |
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> Note sure why the compiler's -I paths aren't doing the job, but this is OK. Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-01-22 | glapi: clean-up and simplify glapi_nop.c code | Brian Paul | |
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. | |||
2010-01-22 | glapi: split the no-op dispatch code into new glapi_nop.c file | Brian Paul | |
This unclutters the glapi.c file a bit. | |||
2010-01-22 | glapi: fix int->pointer conversions warnings in no-op functions | Brian Paul | |
2010-01-22 | progs/xdemos: add z/Z keys for scaling the rendering | Brian Paul | |
2010-01-22 | gallium/draw: fix-up comments, whitespace | Brian Paul | |
2010-01-22 | gallium/draw: replace int with boolean | Brian Paul | |
2010-01-22 | r600: enable sampler lod* bits | Andre Maasikas | |
bits, settings derived from testing, might contain some errors... | |||
2010-01-22 | r600: update vport z & clipping when depth_clamp is changed | Andre Maasikas | |
fixes piglit depth_clamp | |||
2010-01-22 | r600: fix brownbag, only align if we are dealing with cubemap | Andre Maasikas | |
2010-01-22 | r600: cubemap levels seem to be aligned to 8 images | Andre Maasikas | |
2010-01-22 | radeon/fbo: flush rendering before generating mipmaps | Andre Maasikas | |
or maybe should flush(also) in finish_render_texture... | |||
2010-01-22 | radeon/fbo: use correct depth texture offset for depth textures | Andre Maasikas | |
2010-01-22 | r600: enable draw_offset | Andre Maasikas | |
fixes some fbo cases (mipmaps, cube textures ..) | |||
2010-01-22 | docs: Update sourcetree.html for EGL and the state trackers. | Chia-I Wu | |
2010-01-22 | st/egl_g3d: Rename to st/egl. | Chia-I Wu | |
Simply the name to egl. | |||
2010-01-22 | winsys/drm: Update the options of mklib in Makefile.egl_g3d. | Chia-I Wu | |
Pass -linker, -ldflags, and $(MKLIB_OPTIONS) to mklib. | |||
2010-01-22 | egl: Remove egl_softpipe. | Chia-I Wu | |
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. | |||
2010-01-22 | winsys/drm: Add swrast. | Chia-I Wu | |
The swrast winsys always returns NULL when drm_api_create is called. | |||
2010-01-22 | st/egl: Remove the egl state tracker. | Chia-I Wu | |
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. | |||
2010-01-22 | egl: Remove USING_EGL and the related drivers. | Chia-I Wu | |
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. | |||
2010-01-22 | egl: Remove the demo driver. | Chia-I Wu | |
The demo driver has outdated. It is suggested to look at any of the drivers that is functioning. | |||
2010-01-22 | st/egl_g3d: Use glxinit.c from egl_xdri. | Chia-I Wu | |
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. | |||
2010-01-22 | docs: Update the status of egl_xdri. | Chia-I Wu | |
Mention that it also supports DRISW. | |||
2010-01-22 | egl_xdri: Add support for DRISW. | Chia-I Wu | |
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. | |||
2010-01-22 | egl_xdri: Flush commands on context switch and buffer swap. | Chia-I Wu | |
The corresponding DRI functions does not flush for us. | |||
2010-01-22 | egl_xdri: Report only OpenGL support. | Chia-I Wu | |
It reported OpenGL ES support because some demos did not set EGL_RENDERABLE_TYPE correctly. The demos are fixed. | |||
2010-01-22 | egl_xdri: Do not reinitialize in __glXInitialize. | Chia-I Wu | |
__glXInitialize should return the same GLX display for the same X display. This issue is triggered by a35f6bb207efe3c959bbd16a37f2049e5aceeea9. | |||
2010-01-22 | egl_glx: Report only OpenGL support. | Chia-I Wu | |
It reported OpenGL ES support because some demos did not set EGL_RENDERABLE_TYPE correctly. The demos are fixed. | |||
2010-01-22 | egl: Update driver Makefiles. | Chia-I Wu | |
Update to use the new Makefile.template. | |||
2010-01-22 | egl: Add Makefile.template for EGL drivers. | Chia-I Wu | |
2010-01-22 | winsys/drm: Update Makefile.template. | Chia-I Wu | |
Mainly to respect LDFLAGS and remove unused target $(LIBNAME_EGL). This is based on the patch by Tomáš Chvátal <scarabeus@gentoo.org>. | |||
2010-01-21 | Fix typo in configure message for gcc -fvisibility=hidden | Alan Coopersmith | |
Need to use $CC for a shell variable, not $(CC) for a make variable which the shell interprets as running the command "CC". Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> | |||
2010-01-21 | gallium: fix conditional rendering comment | Brian Paul | |
2010-01-21 | gallium/docs: document conditional rendering | Brian Paul | |
2010-01-21 | gallium: updated comments, whitespace fixes | Brian Paul | |
2010-01-21 | mesa: minor whitespace fix | Brian Paul | |
2010-01-21 | mesa: support for GL_ARB_fragment_coord_conventions | Luca Barbieri | |
Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-01-21 | progs/fp: testcases for GL_ARB_fragment_coord_conventions | Brian Paul | |
Based on a patch from Luca Barbieri but moved the comments after the !!ARBfp1.0 header | |||
2010-01-21 | docs: remove old pbuffer info | Brian Paul | |
2010-01-21 | docs: added target attribute to external URLs | Brian Paul | |
2010-01-21 | docs: add links to the egl, openvg, opengles pages | Brian Paul | |
And move the GLSL link up the use User Topics section. | |||
2010-01-21 | softpipe: added region assertions in softpipe_get_tex_transfer() | Brian Paul | |
2010-01-21 | docs: new Mesa source tree overview page. | Brian Paul | |
This has been sitting around for a while. Incomplete, but a good start. | |||
2010-01-21 | dri: Remove unnecessary glapi headers. | Chia-I Wu | |
They are not used at all. | |||
2010-01-21 | Do not include glapi/dispatch.h outside Mesa core. | Chia-I Wu | |
Include the glapi*.h directly instead. glapi/dispatch.h became a Mesa core header since 22884db174b9fb0736cec1c6a192f8b9a97500c1. | |||
2010-01-21 | docs: Update documentation for OpenVG and OpenGL ES. | Chia-I Wu | |
Update the instructions and add references to egl.html. | |||
2010-01-21 | docs: Add documentation for EGL. | Chia-I Wu | |
This is a short guide to EGL. The drivers that are to be removed soon are not mentioned in the guide. | |||
2010-01-20 | gallium/i965: Make brw_batchbuffer prototypes match in source & header | Alan Coopersmith | |
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-01-20 | radeong: Fix EGL driver names. | Corbin Simpson | |
Using "radeon" instead of "radeong" because we don't have classic EGL. |