summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-04-04Merge branch '7.8'Ian Romanick6-141/+186
2010-04-04gl: updated glxext.h to version 27Ian Romanick1-103/+106
2010-04-04progs/egl: Add an OpenGL ES demo for EGL_OES_image_pixmap.Chia-I Wu2-0/+583
The demo uses a Pixmap as its drawing area, and whatever is drawn on the pixmap will be used as a texture to draw a cube.
2010-04-04st/mesa: Implement GL_OES_EGL_image driver hooks.Chia-I Wu7-0/+245
Use st_manager::get_egl_image to look up GLeglImageOES and implement EGLImageTargetTexture2D and EGLImageTargetRenderbufferStorage.
2010-04-04st/egl: Implement get_egl_image hook.Chia-I Wu1-0/+32
This hook may be used by rendering state trackers to implement EGLImage extensions.
2010-04-04r300g: fix TFP stride override.Dave Airlie1-1/+1
We should use pitch for the overriden state, fixes one half of the tfp test. Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-04-04r300g: add conditional renderingMarek Olšák3-0/+33
2010-04-04r300g: add r4xx fragment shader registersMarek Olšák1-1/+47
In case anyone needs it, it's here.
2010-04-04r300g: do not use the c++ template keywordMarek Olšák2-27/+27
It makes life for some code browsing utilites easier.
2010-04-04r300g: properly setup textures from X serverMarek Olšák1-4/+3
The setup needs be done after querying tiling flags.
2010-04-03util: Use GCC atomic bultins on GCC 4.1 and higher only.Vinson Lee1-1/+1
2010-04-03xdemos: Build object files firstJeremy Huddleston1-30/+15
This helps debugging on darwin. Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2010-04-03r300g: fix color tiling for buffer from X server.Dave Airlie5-1/+38
The tiling setup needs a bit of work, but this should be good enough for now, when we get buffers from the kernel we need to store their tiling properties. Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-04-02mesa: display list support for GL_EXT_transform_feedbackBrian Paul1-1/+48
2010-04-02mesa: plug in GL_EXT_transform_feedback functions into dispatchBrian Paul1-0/+13
2010-04-02glapi: regenerated files for EXT_transform_feedbackBrian Paul10-3972/+4561
2010-04-02glapi: include/build EXT_transform_feedback.xmlBrian Paul2-0/+3
2010-04-02glapi: new EXT_transform_feedback.xml fileBrian Paul1-0/+123
2010-04-02glapi: fix error messageBrian Paul1-1/+1
2010-04-03r300 compiler: add target output debugging.Dave Airlie1-3/+4
print the output target in the FP debug. Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-04-03util: Revert unsolicited, untested, unreviewed, and broken changes to format ↵José Fonseca9-206/+137
support. Not all is bad, but I'm afraid I'll have to throw the baby with the water given they are all tied to together.
2010-04-03python/tests: Output test results in a format that Hudson CI can understand.José Fonseca1-5/+69
2010-04-02gallium/docs: Dithering might not actually do anything.Corbin Simpson1-1/+1
2010-04-02r300g: Expound on dithering comment.Corbin Simpson1-4/+9
2010-04-03r300g: make dithering work like fglrx.Dave Airlie1-2/+4
From fglrx traces the dithering is never enabled. Signed-off-by: Dave Airlie <airlied@redhat.com>
2010-04-02gallium: fix dri_destroy_option_cache() when optionCache.info is NULLYann Droneaud1-4/+6
With an Intel 855GM handled by intel_drv, there's a crash with Gallium3D enabled DRI driver for Intel i915 (--enable-gallium-intel). The Gallium3D driver doesn't support the 855GM as expected by intel_drv, it failed to open the screen and give an half initialized screen structure to dri_destroy_option_cache(): optionCache.info is NULL, so it's crashing while trying to free array content. This patch at least fix the crash in the function. Here's some logs of the fixed version: [ 16274.137] LoaderOpen(/opt/mesa/lib/xorg/modules/drivers/intel_drv.so) [ 16274.139] (II) Loading /opt/mesa/lib/xorg/modules/drivers/intel_drv.so [ 16274.183] (II) Module intel: vendor="X.Org Foundation" [ 16274.183] compiled for 1.8.0, module version = 2.11.0 [ 16274.183] Module class: X.Org Video Driver [ 16274.183] ABI class: X.Org Video Driver, version 7.0 [ 16274.183] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45, 4 Series, G45/G43, Q45/Q43, G41, B43, Clarkdale, Arrandale [ 16274.382] (II) intel(0): Integrated Graphics Chipset: Intel(R) 855GME [ 16274.382] (--) intel(0): Chipset: "852GM/855GM" [ 16276.675] (II) intel(0): [DRI2] Setup complete [ 16276.675] (II) intel(0): [DRI2] DRI driver: i915 debug_get_option: GALLIUM_TRACE = (null) debug_get_bool_option: GALLIUM_RBUG = FALSE debug_get_bool_option: INTEL_DUMP_CMD = FALSE i915_create_screen: unknown pci id 0x3582, cannot create screen dri_init_screen_helper: failed to create pipe_screen [ 16276.794] (EE) AIGLX error: Calling driver entry point failed [ 16276.794] (EE) AIGLX: reverting to software rendering [ 16276.794] (II) AIGLX: Screen 0 is not DRI capable [ 16276.796] (II) AIGLX: Loaded and initialized /opt/mesa/lib/dri/swrast_dri.so [ 16276.796] (II) GLX: Initialized DRISWRAST GL provider for screen 0 Signed-off-by: Yann Droneaud <yann@droneaud.fr> Reviewed-by: Corbin Simpson <MostAwesomeDude@gmail.com>
2010-04-02llvmpipe: limit max texture size to 2Kx2K for nowBrian Paul3-1/+8
MAXWIDTH/HEIGHT were 2048 but the max texture size was 4096. This caused a crash if a 4Kx4K texture was created and rendered to. See comment about max framebuffer size in lp_scene.h. Also added assertions to catch this inconsistancy in the future.
2010-04-02gallivm: Add fallthrough comment at end of case statement.Vinson Lee1-0/+1
The code is correct. Tell Coverity that the fallthrough case is intentional.
2010-04-02progs/gallium/unit: Silence uninitialized variable warnings.Vinson Lee1-4/+4
2010-04-02glx: Fix compilation errors on non-GLX_DIRECT_RENDERING builds.Vinson Lee1-2/+39
Add ifdef guards around variables of types defined only for GLX_DIRECT_RENDERING.
2010-04-02gallium/util: print \n after DXTn printfLuca Barbieri1-3/+3
2010-04-02softpipe: remove S3TC init, since it's done on-demand nowLuca Barbieri1-2/+0
2010-04-01progs/gallium/unit: Move declaration before code.Vinson Lee1-1/+2
Fixes SCons build.
2010-04-01glsl: fix bad return value in link_transform_feedback()Brian Paul1-1/+1
2010-04-01gallium/util: remove extraneous semicolonBrian Paul1-1/+1
2010-04-01gallium: remove old comment about return valuesBrian Paul1-1/+1
2010-04-01glsl: remove obsolete commentBrian Paul1-1/+0
2010-04-01glsl: do extra link checking for transform feedbackBrian Paul1-3/+83
2010-04-01docs: update GL3 / GL_ARB_fragment_coord_conventions statusBrian Paul1-1/+1
2010-04-01mesa: minor fixes in _mesa_GetTransformFeedbackVarying()Brian Paul1-1/+10
2010-04-01glsl: append built-in, used varying vars to the varying vars listBrian Paul1-0/+27
2010-04-01mesa: make _mesa_copy_string() non-staticBrian Paul2-7/+25
2010-04-01glsl: pass datatype to _mesa_add_varying()Brian Paul4-5/+7
Will be needed later for transform feedback support.
2010-04-01glsl: add more vertex/fragment output info helpersBrian Paul2-13/+64
2010-04-02gallium/util: revert util_format_init additionLuca Barbieri5-17/+1
Putting calls to util_format_init all over the codebase is infeasible. Instead, half float tables are pregenerated, and the s3tc library is loaded on demand. I believe this is a solution that combines performance, cleanliness, flexibility and portability.
2010-04-02gallium/util: add util_format_is_supported to check for pack/unpackLuca Barbieri5-28/+40
This improves the code by making it more readable, and removes special knowledge of S3TC and other formats from softpipe.
2010-04-02gallium/util: load s3tc on demandLuca Barbieri2-107/+151
This changes the S3TC function pointers to be initialized to stubs that load the S3TC library and then delegate to the real functions. If the S3TC library fails to load, the function pointers are replaced with a "nop" function. The code is also changed to attempt to load the library only one time.c Note that unlike checking for a flag, this method has no performance cost at all. The use of the "nop" functions also allows to avoid most checks, that are only preserved when the function does non-trivial work.
2010-04-02progs/gallium: add unit test for u_halfLuca Barbieri3-1/+77
2010-04-02gallium/util: pregenerate half float tablesLuca Barbieri6-170/+191
This solution avoids the issue of how to run the initializers and also allows those pages (and the parts of them in processor caches) to be shared between multiple processes. The drawback is slightly higher library size.
2010-04-02st/vega: Do not depend on libm.Chia-I Wu1-2/+3
This fixes the "no rule to make target -lm" error on darwin, reported by Jeremy Huddleston.