Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-02 | gallium/util: add util_format_init that inits s3tc and util_half | Luca Barbieri | |
Switch from auto-init to explicit init for util_half per Brian Paul's indication. NOTE: this is probably broken because not enough things call util_format_init. Will be fixed shortly | |||
2010-04-02 | gallium/util: add one-time initialization helper | Luca Barbieri | |
2010-04-02 | gallium/util: use #pragma section instead of #pragma data_seg | Luca Barbieri | |
They apparently both declare the section, but #pragma data_seg also puts all subsequent definitions in the section, which is undesirable. This should be the correct solution, and is actually used by the reference I cited (but I forgot to do it in my code). Untested, let me know if it doesn't work. | |||
2010-04-02 | gallium/util: reindent u_half.c and u_half.h with Mesa coding style | Luca Barbieri | |
Sorry, forgout about that. | |||
2010-04-02 | Revert "util: Init half-float tables on demand." | Luca Barbieri | |
This reverts commit 950300eb255f0e3507bf2757d16c3b5bc8ff3471. | |||
2010-04-01 | progs: Fix linking of Xlib demos for non-autoconf builds | Dan Nicholson | |
The Xlib demos were fixed to use $(X11_LIBS) so that configure could detect the proper directory to link the library from, but this broke the non-autoconf builds. Give X11_LIBS a default value to fallback on. | |||
2010-04-01 | util: Init half-float tables on demand. | Corbin Simpson | |
Gets rid of unnecessary delays on startup and compiler-specific hax. | |||
2010-04-01 | llvmpipe: Support sampling from PIPE_FORMAT_R32_FLOAT. | José Fonseca | |
2010-04-01 | util: Declare .CRT$XCU data segment. | Michal Krol | |
2010-04-01 | scons: Remove `util/u_gctors.cpp'. | Michal Krol | |
2010-04-01 | gallium/util: rewrite global constructor system for half floats (GCC/MSVC only!) | Luca Barbieri | |
NOTE: this commit will cause Gallium to fail to build on any compiler except GCC, the Microsoft C compiler and compatible compilers that claim to be one of those. This commit removes the u_gctors.cpp mechanism, in favor of using compiler-specific syntax to add global constructors from C files. This solves the problem of u_gctors.o not being pulled from static libraries and avoids using C++. However, it needs compiler-specific support for every compiler. The Microsoft C compiler support has not been tested. | |||
2010-04-01 | llvmpipe: Support sampling from signed and mixed siged formats. | José Fonseca | |
2010-04-01 | python/tests: We're using a rgba8 rendertarget so sample only in the [0, 1] ↵ | José Fonseca | |
range. | |||
2010-04-01 | st/python: Allow to sample only in the [0,1] range. | José Fonseca | |
2010-04-01 | python/tests: Several cleanups. | José Fonseca | |
2010-04-01 | st/python: Always use softpipe as reference driver. | José Fonseca | |
2010-04-01 | gallium/util: add copyright header to u_half.c | Luca Barbieri | |
2010-04-01 | Update DEMO_FILES for demos using EGL. | Chia-I Wu | |
Reflect the recent addtion of eglut and reorganization of the EGL demos. This helps remove ~2k lines of duplicated code $ git diff --shortstat -M 57cc1db87b5cacffd3344c49062c8289b7d46e78 18 files changed, 298 insertions(+), 2178 deletions(-) | |||
2010-04-01 | progs/egl: Port OpenVG lion and sp to eglut. | Chia-I Wu | |
2010-04-01 | progs/egl: Port ES1 gears to eglut. | Chia-I Wu | |
As gears in the last demo under "screen" subdirectory, this also removes the directory. | |||
2010-04-01 | progs/egl: Port ES1 tri to eglut. | Chia-I Wu | |
This also removes EGL_MESA_screen_surface version of ES1 tri as eglut supports the extension. | |||
2010-04-01 | progs/egl: Replace egltri by xegl_tri. | Chia-I Wu | |
With the switch to eglut, xegl_tri supports both X11 and EGL_MESA_screen_surface. Have it replace egltri. | |||
2010-04-01 | progs/egl: Porg xegl_tri to eglut. | Chia-I Wu | |
2010-04-01 | progs/egl: Port eglgears to eglut. | Chia-I Wu | |
2010-04-01 | progs/egl: Add eglut. | Chia-I Wu | |
eglut is a simple library with GLUT-like API. It is intended to be used by simple EGL demos. | |||
2010-04-01 | progs/openvg: Move OpenVG demos to a subdirectory of progs/egl. | Chia-I Wu | |
That is, move progs/openvg/demos to progs/egl/openvg, progs/openvg/trivial to progs/egl/openvg/trivial. | |||
2010-04-01 | progs/es: Move OpenGL ES demos to subdirectories of progs/egl. | Chia-I Wu | |
Move progs/es1/xegl -> progs/egl/opengles1, progs/es1/screen -> progs/egl/opengles1/screen, progs/es2/xegl -> progs/egl/opengles2. | |||
2010-04-01 | progs/egl: Move demos a level deeper. | Chia-I Wu | |
Move the demos to "opengl" subdirectory. | |||
2010-04-01 | llvmpipe: More tweaks to the supported texture formats. | José Fonseca | |
2010-04-01 | gallium/unit: Invoke util_half_init_tables(). | José Fonseca | |
half float formats now pass the tests. | |||
2010-04-01 | util: Declare util_half_init_tables only once. | José Fonseca | |
2010-04-01 | util: Use u_math.h's union fi instead of redefining it. | José Fonseca | |
2010-04-01 | util: Add support for other DXTn RGBA formats. | José Fonseca | |
2010-04-01 | util: Get DXT1_RGB format working correctly. | José Fonseca | |
2010-04-01 | util: Add test case for PIPE_FORMAT_DXT1_RGB. | José Fonseca | |
2010-04-01 | llvmpipe: Fix build... | José Fonseca | |
2010-04-01 | util: Allow to have block format test cases | José Fonseca | |
2010-04-01 | util: Generate correct format conversions for half floats. | Michal Krol | |
2010-04-01 | util: Use u_half to perform half <--> float conversions. | Michal Krol | |
2010-04-01 | gallium: Integrate util_half with scons. | Michal Krol | |
2010-04-01 | gallium/util: add fast half float conversion functions | Luca Barbieri | |
This adds a fast half float conversion facility to Gallium. Mesa already contains such a facility, but using a much worse algorithm. This one is an implementation of www.fox-toolkit.org/ftp/fasthalffloatconversion.pdf and uses a branch-less algorithm with some lookup tables small enough to fit in the L1 cache. Ideally, Mesa should start using these functions too, but I'm not sure how to arrange that with the current build system. A new "u_gctors.cpp" is added that defines a global C++ constructor allowing to initialize to conversion lookup tables at library init. | |||
2010-04-01 | gallium/unit: Install test in build/xxx/bin | José Fonseca | |
2010-04-01 | util: Add half float test cases. | José Fonseca | |
2010-04-01 | llvmpipe: Fix (un)swizzling, broken due to use of VOID channels. | José Fonseca | |
2010-03-31 | mesa: Remove unnecessary header. | Vinson Lee | |
2010-03-31 | r300g: Remove unnecessary header. | Vinson Lee | |
2010-04-01 | util/format: fix big endian compilation by not trying to byteswap single bytes | Luca Barbieri | |
Conceivably, we could also have a dummy util_bswap8, but it seems better to not emit it in the first place. | |||
2010-03-31 | gallivm: convert floats to doubles | Zack Rusin | |
printf can't handle floats, convert them to doubles so that we can actually print floats. | |||
2010-04-01 | r300g: add RGBA16F colorbuffer support | Marek Olšák | |
Disabled by default due to unresolved IP issues. | |||
2010-04-01 | r300g: add RGTC texture support | Marek Olšák | |
The CS checker already knows about this. |