summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* r300g: update the texture initialization so that it respects tilingMarek Olšák2010-01-121-6/+50
| | | | This is still work-in-progress and tiling is not enabled by default.
* r300g: add emission of texture tiling bitsMarek Olšák2010-01-123-11/+32
|
* r300g: add is_r400 flagMarek Olšák2010-01-122-1/+22
| | | | r4xx has some additional fragment shader registers compared to r3xx.
* r300g: silence a warningMarek Olšák2010-01-121-1/+1
|
* r300g: only emit scissor when neededMarek Olšák2010-01-122-2/+4
| | | | | | Reverting some bits from ce1c493ff8fad4b62e2b66f06636ac6560a6e0ad. Given the latest fixes, it's not needed to always emit scissor, really.
* Revert "r300g: Placate kernel checker by explicitly disabling depth test."Marek Olšák2010-01-121-8/+11
| | | | | | | | This reverts commit e920ee23b32f6031a7b8527b540566e7ada6af8a. Assuming the FB state is not dirty and the DSA state is, then the depth test will be re-enabled, making the kernel checker angry. Reverting the commit fixes piglit/glsl-bug-22603.
* r300g: mark all states as dirty after flushMarek Olšák2010-01-121-0/+9
| | | | It fixes almost all regressions introduced lately.
* nv50: fix 2 off by one memory leaks (nv50_miptree_level->image_offset)Marcin Slusarz2010-01-121-2/+2
|
* nv50: fix memory leak on nv50_pc freeMarcin Slusarz2010-01-121-0/+2
|
* gallium: Rename ALIGN_STACK -> PIPE_ALIGN_STACK for consistency.José Fonseca2010-01-125-7/+7
|
* gallium: Simplify PIPE_ALIGN_VAR.José Fonseca2010-01-1216-50/+52
| | | | | | gcc allows pre-fix variable attributes. Suggested by Ian Romanick.
* gallium: Generalize the alignment macros to other compilers and any alignment.José Fonseca2010-01-1217-62/+81
|
* r300g: Always emit scissors.Corbin Simpson2010-01-125-69/+45
| | | | Save some code, improve FPS, and fix piglit tests. Everybody wins.
* st/egl_g3d: Get the stapi from the driver.Chia-I Wu2010-01-121-3/+2
| | | | | egl_g3d_get_st was called because the driver argument was not given before. It can be fixed now.
* egl: Add _EGLDriver as the first argument to GetProcAddress.Chia-I Wu2010-01-126-6/+7
| | | | | The rest of the driver API has it as the first argument. It should be there so that a driver has access to itself.
* egl_xdri: Fix build breakage.Chia-I Wu2010-01-121-1/+1
| | | | | driScreen->swapBuffers takes 3 more arguments since daf7fe69f7bd0caa955d30b43fc35b7ce0069b6b.
* st/egl_g3d: Improve comments to the native display interface.Chia-I Wu2010-01-121-2/+12
| | | | | Document the future of __GLcontextModes. Improve the description of surface validation and native_flush_frontbuffer.
* r300g: Add back dirty state check.Corbin Simpson2010-01-111-0/+4
| | | | | From 07ea7e6c80. This is the only questionable part of that commit, AFAICT...
* r300g: Placate kernel checker by explicitly disabling depth test.Corbin Simpson2010-01-111-11/+8
| | | | | | | This probably should disable stencil, too, if the kernel cares enough. Note: When atomized, framebuffer setup should go towards the end anyway, but it *must* follow these test setups anyway.
* r300g: Avoid segfault on binding null RS state.Corbin Simpson2010-01-111-1/+5
|
* st/mesa: removed unused varBrian Paul2010-01-111-2/+0
|
* st/mesa: comments, whitespaceBrian Paul2010-01-111-8/+15
|
* winsys/drm: Use egl_g3d to build EGL drivers.Chia-I Wu2010-01-1212-1/+145
| | | | | | | The new EGL drivers use egl_g3d and respect EGL_DISPLAYS. They are named after the display supported and the DRM name. Signed-off-by: Chia-I Wu <[email protected]>
* st/egl_g3d: Add support for KMS native display.Chia-I Wu2010-01-123-1/+1005
| | | | | | | The KMS native display implements the modeset interface using DRM modesetting. Signed-off-by: Chia-I Wu <[email protected]>
* st/egl_g3d: Add support for EGL_MESA_screen_surface.Chia-I Wu2010-01-122-1/+202
| | | | | | This is implemented through the modeset interface. Signed-off-by: Chia-I Wu <[email protected]>
* st/egl_g3d: Update the native display interface for modesetting.Chia-I Wu2010-01-121-13/+56
| | | | | | The new interface can be used to implement EGL_MESA_screen_surface. Signed-off-by: Chia-I Wu <[email protected]>
* st/egl_g3d: New EGL state tracker that uses Gallium.Chia-I Wu2010-01-1220-0/+4376
| | | | | | | | | | | | This new (intermediate) EGL state tracker is the base work for EGL drivers that uses Gallium. It makes it easier to support new window systems. Currently, there is support only for X11. This driver supports multiple APIs (OpenVG, OpenGL, ...) and supports hardware acceleration through winsys/drm. Signed-off-by: Chia-I Wu <[email protected]>
* winsys/drm: Add name field to drm_api.Chia-I Wu2010-01-126-0/+7
| | | | | | | The name can be used for driver selection. It has the same name as the DRI driver does right now. Signed-off-by: Chia-I Wu <[email protected]>
* egl: EGL_SCREEN_BIT_MESA is a valid bit.Chia-I Wu2010-01-121-0/+1
| | | | | | Update _eglValidateConfig so that it passes the test. Signed-off-by: Chia-I Wu <[email protected]>
* progs/egl: Fix screen surface demos.Chia-I Wu2010-01-125-10/+22
| | | | | | | | Set the screen surface size to the mode size, as the spec requires the screen surface size to be larger than the mode size. Besides, bind the API to OpenGL as they are written in it. Signed-off-by: Chia-I Wu <[email protected]>
* progs/egl: glGenTextures is called too early in xeglbindtex.Chia-I Wu2010-01-121-2/+2
| | | | | | It should be called after eglMakeCurrent. Signed-off-by: Chia-I Wu <[email protected]>
* progs: Check the number of configs returned by eglChooseConfig.Chia-I Wu2010-01-126-10/+14
| | | | | | | A successful eglChooseConfig call does not imply there are valid configs. Signed-off-by: Chia-I Wu <[email protected]>
* progs: Add missing EGL_RENDERABLE_TYPE for EGL demos.Chia-I Wu2010-01-126-0/+7
| | | | | | | The default value of EGL_RENDERABLE_TYPE is EGL_OPENGL_ES_BIT. The proper values should be specified if we are not using OpenGL ES. Signed-off-by: Chia-I Wu <[email protected]>
* st/mesa: Remove st_api.c.Chia-I Wu2010-01-123-34/+2
| | | | | | | | | st_api.c is supposed to define st_api_OpenGL to advertise OpenGL support. However, the linker discards the symbol because it has no user. It is better to leave this to other state trackers that link to libmesagallium.a. Signed-off-by: Chia-I Wu <[email protected]>
* st/vega: Make it compatible with st_public.h.Chia-I Wu2010-01-122-6/+12
| | | | | | | It missed a stub for st_get_proc_address, and st_make_current should return a boolean. Signed-off-by: Chia-I Wu <[email protected]>
* st/vega: Advertise OpenVG support.Chia-I Wu2010-01-121-0/+3
| | | | | | Define st_api_OpenVG to advertise OpenVG support. Signed-off-by: Chia-I Wu <[email protected]>
* GLX: check glproto versionJesse Barnes2010-01-111-0/+2
| | | | | | | This was a silent dependency before, but now we really need 1.4.11 for INTEL_swap_event support, so check for it. Signed-off-by: Jesse Barnes <[email protected]>
* Merge branch 'master' of ssh://people.freedesktop.org/~jbarnes/mesaJesse Barnes2010-01-1128-239/+1062
|\ | | | | | | | | | | Conflicts due to DRI1 removal: src/mesa/drivers/dri/intel/intel_context.c src/mesa/drivers/dri/intel/intel_screen.c
| * intel/DRI2: add DRI2flushExtension support with invalidate hookKristian Høgsberg2010-01-085-17/+44
| | | | | | | | | | | | Needed to support the SwapBuffers code properly. Signed-off-by: Kristian Høgsberg <[email protected]>
| * xdemos/glsync: handle no sync method betterJesse Barnes2010-01-081-8/+4
| | | | | | | | Print out count, finish rendering, etc. Makes the -sn option more useful.
| * xdemos/glsync: check glXMakeCurrent return valueJesse Barnes2010-01-081-1/+5
| | | | | | | | Since this program is used for testing, catching this case can be helpful.
| * xdemos/glsync: Make glsync test draw a rectangleJesse Barnes2010-01-081-34/+49
| | | | | | | | | | Doing simple buffer clears isn't enough to actually allocate render buffers, we need to do real drawing.
| * xdemos/glsync: Add swap interval support to glsync testJesse Barnes2010-01-081-3/+17
| |
| * DRI2/GLX: add INTEL_swap_event supportJesse Barnes2010-01-088-5/+193
| | | | | | | | | | | | | | Add event support for the GLX swap buffers event, along with DRI2 protocol support for generating GLX swap buffers events in the direct rendered case. Signed-off-by: Jesse Barnes <[email protected]>
| * DRI2: add SwapInterval supportJesse Barnes2010-01-086-9/+80
| | | | | | | | | | | | | | | | Add support for the DRI2SwapInterval protocol request. This allows direct rendered clients to control their swap interval per the SGI_swap_control extension. Signed-off-by: Jesse Barnes <[email protected]>
| * DRI2: add OML_sync_control supportJesse Barnes2010-01-0812-185/+627
| | | | | | | | | | | | | | | | Add OML_sync_control support, along with a simple program for testing it. This means adding support for the DRI2GetMSC, DRI2WaitMSC and DRI2WaitSBC requests. Signed-off-by: Jesse Barnes <[email protected]>
| * DRI2: add SwapBuffers supportJesse Barnes2010-01-087-3/+67
| | | | | | | | | | | | | | | | | | | | Support the new DRI2 protocol request, DRI2SwapBuffers, in both direct and indirect rendering context. This request allows the display server to optimize back->front swaps (e.g. through page flipping) and allows us to more easily support other GLX features like swap interval and the OML sync extension in DRI2. Signed-off-by: Jesse Barnes <[email protected]>
* | st/xlib: Mark GLX functions as public.Chia-I Wu2010-01-113-77/+80
| | | | | | | | | | | | Mark all functions start with glX as public. Signed-off-by: Chia-I Wu <[email protected]>
* | st: Mark functions in st_public.h and vg_tracker.h as public.Chia-I Wu2010-01-112-0/+42
| | | | | | | | | | | | | | These functions are the API of Gallium state tracker, and are used by EGL. Signed-off-by: Chia-I Wu <[email protected]>
* | gallium: Add PUBLIC macro for function visibility.Chia-I Wu2010-01-111-0/+11
| | | | | | | | | | | | | | As the default build has -fvisibility=hidden, add a macro to control the visibility. Signed-off-by: Chia-I Wu <[email protected]>