Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2010-04-01 | r300g: format handling cleanup | Marek Olšák | |
2010-03-31 | softpipe: Use S3TC when avaiilable, | José Fonseca | |
2010-03-31 | util: Hook into libtxc_dxtn.so (WIP). | José Fonseca | |
2010-03-31 | llvmpipe: Don't call unused generate_clamp(). | José Fonseca | |
2010-03-31 | libgl-xlib: Fix missing X11 symbols. | José Fonseca | |
2010-03-31 | util: Make the accessors bidimensional again. | José Fonseca | |
Otherwise there's no way to unpack blocks with height >1 | |||
2010-03-31 | util: First stab at half-float conversion. | Michal Krol | |
2010-03-31 | util: Describe PIPE_FORMAT_NONE as PIPE_FORMAT_R8_USCALED. | José Fonseca | |
Avoids the need to special case PIPE_FORMAT_NONE so often. Conflicts: src/gallium/auxiliary/util/u_format_table.py |