Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-03 | progs/util: Fix memory leak if malloc fails in tkRGBImageLoad. | Vinson Lee | |
(cherry picked from commit 786d539511eb3c5a4101b11b7f8e90d60123ac46) | |||
2009-12-03 | progs/util: Fix memory leak if LoadRGBImage fails. | Vinson Lee | |
(cherry picked from commit 041cd0e110d41b543a0fe9cc484ae8373642912b) | |||
2009-12-03 | progs/util: Fix memory if LoadRGBMipmaps2 fails. | Vinson Lee | |
(cherry picked from commit 28b8e4bcd76cc072b062e4c8575327c05ecb9a55) | |||
2009-12-03 | progs/util: Fix memory leak if LoadYUVImage fails. | Vinson Lee | |
(cherry picked from commit 0e790ac35327a0b53a4a595a6429135317302269) | |||
2009-12-03 | progs/fp: Redraw upon keypress. | Vinson Lee | |
(cherry picked from commit cde66437247feb8b14b6d8f3ec3a8b4665fefa08) | |||
2009-12-03 | prog/tests: Fix MSVC build. | Vinson Lee | |
Signed-off-by: Brian Paul <brianp@vmware.com> (cherry picked from commit 9c3197ef0abc3bf521358ea0c7af0fc6979c82b3) | |||
2009-12-03 | progs/tests: fix MSVC build. | Vinson Lee | |
Signed-off-by: Brian Paul <brianp@vmware.com> (cherry picked from commit a8ed066858f12290239ddc9165b7c0734ccc0247) | |||
2009-12-03 | progs/tests: Fix MSVC build. | Vinson Lee | |
(cherry picked from commit 50e113e375b4ecfdf5b60ccce7bbcdb1c5f2ca11) | |||
2009-12-04 | vega: fix missing include | Roland Scheidegger | |
2009-12-04 | Merge branch 'gallium-noblocks' | Roland Scheidegger | |
Conflicts: src/gallium/state_trackers/xorg/xorg_exa.c | |||
2009-12-03 | progs/tests: Fix MSVC build. | Vinson Lee | |
(cherry picked from commit 952bf63e2cf442504ef89b0b1d276da0d52b21d4) | |||
2009-12-03 | progs/tests: Use rand() instead of random(). | José Fonseca | |
Forgot these on previous commit. (cherry picked from commit 166957abebea6aa203eba7e6348e89d53cf0e13e) | |||
2009-12-03 | progs/tests: Use rand() instead of random(). | José Fonseca | |
More portable. Same implementation on Linux. (cherry picked from commit 699260b19535abaa3af0a5d33eb039e3d6a30ce9) | |||
2009-12-03 | progs/tests: Fix MSVC build. | Vinson Lee | |
(cherry picked from commit f7455ad7af09b5ef31ccc454b79422a13c59af9a) | |||
2009-12-03 | prog/tests: Fix MSVC build. | Vinson Lee | |
(cherry picked from commit 60b6c7458319ff01ecdd9d1650d526ac8f75e194) | |||
2009-12-03 | prog/tests: Fix MSVC build. | Vinson Lee | |
(cherry picked from commit 96fd13c1a024e3b6c0b1c44394c67c772e52b9c9) | |||
2009-12-03 | progs/tests: fix MSVC build. | Vinson Lee | |
(cherry picked from commit 9c778a90ea24f25437b68bb67856c81add61e261) | |||
2009-12-03 | prog/tests: Fix MSVC build. | Vinson Lee | |
(cherry picked from commit ea862ec8ff4a52b30b822e737d93a49330be9e31) | |||
2009-12-03 | gallium: fix remaining users of pipe_reference function | Roland Scheidegger | |
2009-12-03 | mesa: use _mesa_memcpy for COPY_4FV macro | Roland Scheidegger | |
Gets rid of one of the worst strict-aliasing offenders, and actually produces faster code (at least in some cases, when compiler can use for instance 64bit moves for memcpy). (note _mesa_memcpy should get inlined) | |||
2009-12-03 | gallium: fix ref counting bug in pb_bufmgr | José Fonseca | |
This was discovered by the pipe_reference api change. | |||
2009-12-03 | gallium: fix reference counting functions to be strict-aliasing compliant | Roland Scheidegger | |
Historically, parts of mesa code are not strict-aliasing safe, hence -fno-strict-aliasing is needed to compile (this got forgotten for scons builds for gallium, which indeed not only caused compiler warnings but also unexplicable crashes in non-debug builds). However, we should try to eliminate code not complying with strict-aliasing code at least for gallium. Hence change pipe_reference functions to make them strict-aliasing compliant. This adds a bit more complexity (especially for derived classes) but is the right thing to do, and it does in fact fix a segfault. | |||
2009-12-03 | radeon: workaround an FBO issue | Maciej Cencora | |
Fixes #21501 | |||
2009-12-03 | radeon: properly check if image should be placed in the miptree | Maciej Cencora | |
Fixes #25355 | |||
2009-12-03 | r200: fix polygon stipple | Alex Deucher | |
fixes fdo bug 25354 Signed-off-by: Alex Deucher <alexdeucher@gmail.com> | |||
2009-12-03 | Remove pf_swizzle_* internal macros. | Michal Krol | |
2009-12-03 | gallium: Remove pf_mixed_*(). | Michal Krol | |
2009-12-03 | gallium: Remove pf_rev(). | Michal Krol | |
2009-12-03 | Move pf_get_component_bits() to u_format auxiliary module. | Michal Krol | |
2009-12-03 | Move pf_get_bits/size() to u_format auxiliary module. | Michal Krol | |
2009-12-03 | Move pf_get_block() to u_format auxiliary module. | Michal Krol | |
2009-12-03 | Move pf_is_depth_and_stencil() to u_format auxiliary module. | Michal Krol | |
2009-12-03 | Move pf_is_depth_stencil() to u_format auxiliary module. | Michal Krol | |
2009-12-03 | Move pf_is_compressed() to u_format auxiliary module. | Michal Krol | |
2009-12-03 | gallium: Remove unused format functions. | Michal Krol | |
2009-12-03 | tgsi/ureg: Fix ureg_emit_src(). | Michal Krol | |
2009-12-02 | scons: Add Mac OS to target platform list. | Vinson Lee | |
(cherry picked from commit 2c307c775018e5b9680de8022ddf0ce3b6f560be) | |||
2009-12-02 | progs/vpglsl: Fix psiz-mul.glsl compilation error on Mac OS. | Vinson Lee | |
(cherry picked from commit b98db7bf697c3ed6e6df303e9dd66f7ac31eb3e2) | |||
2009-12-02 | progs/glsl: Fix trirast GLSL compilation errors on Mac OS. | Vinson Lee | |
(cherry picked from commit 4b3ec2acf2cc2830b0907e4fb4db8bd1ff4a18e3) | |||
2009-12-02 | progs/glsl: Fix noise GLSL compilation error on Mac OS. | Vinson Lee | |
(cherry picked from commit 0d31990b4742eccdf6ae6a3b3e16c81cc863085d) | |||
2009-12-02 | demos/glsl: Add missing break statement to noise test. | Vinson Lee | |
(cherry picked from commit 7dfea5c0722e9da101805c15b9dd26352816bca9) | |||
2009-12-02 | progs/glsl: Fix multinoise GLSL compilation errors on Mac OS. | Vinson Lee | |
(cherry picked from commit d4dc2e30dada1be425e95ba270920db6eb210982) | |||
2009-12-02 | progs/glsl: Add missing break statement in multinoise.c. | Vinson Lee | |
(cherry picked from commit 43080e40aa0d34423e10f1d50aad15289b2b9aec) | |||
2009-12-02 | progs/glsl: Fix mandelbrot GLSL compilation error on Mac OS. | Vinson Lee | |
(cherry picked from commit 04442841fb7e9138eb50ff692952ad7e8c3877d8) | |||
2009-12-02 | progs/glsl: Include local headers before installed headers during compilation. | Vinson Lee | |
Fixes compilation errors on platforms with insufficient older installed GL headers. (cherry picked from commit d17af7d1e19e637e29db47bd8f6e3e579760c530) | |||
2009-12-02 | progs/glsl: minor Makefile clean-ups | Brian Paul | |
(cherry picked from commit 4df2f7af5e9b2c00ead92fe0ae49ed8491aef1d0) | |||
2009-12-02 | progs: Ignore Mac OS dSYM directories. | Vinson Lee | |
(cherry picked from commit a420056750908f7c2f9a7c18b3ab20f04e49711d) | |||
2009-12-02 | radeong: Clean up some bad code. | Corbin Simpson | |
2009-12-02 | radeong: Add helper to determine pipe driver. | Corbin Simpson | |
2009-12-02 | radeong: Do ioctls before selecting pipe driver. | Corbin Simpson | |