Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2006-08-04 | fix bug when pushing ReadBuffer state for GL_PIXEL_MODE_BITtexman_0_1_branch | Brian Paul | 1 | -0/+2 | |
2006-07-05 | Silence some debug messages.texman_0_1_20060705 | Keith Whitwell | 1 | -3/+0 | |
2006-07-05 | fix more problems with getting window/buffer dimensions wrong after binding ↵ | Keith Whitwell | 4 | -13/+15 | |
a new drawable | |||||
2006-07-05 | Import Brian's drawbuffers fix from trunk version 1.108 of this file. | Keith Whitwell | 1 | -12/+29 | |
2006-06-06 | When clearing, refresh the cx/y/w/h values as they may have beentexman_0_1_20060621 | Keith Whitwell | 2 | -1/+26 | |
invalidated by a new window position or size picked up when we did LOCK_HARDWARE above. The values passed by mesa are not reliable. | |||||
2006-06-06 | Add fgl_glxgears to makefile | Keith Whitwell | 1 | -0/+1 | |
2006-06-02 | set per-context GL_DRAW_BUFFER state regardless of currently bound FBO | Brian Paul | 1 | -6/+4 | |
2006-06-02 | fix depth-component test to allow rectangular textures | Brian Paul | 1 | -2/+4 | |
2006-05-23 | Additional flushing. | Keith Whitwell | 1 | -0/+26 | |
2006-05-23 | Copying overlapping rects works if they are in different buffers... | Keith Whitwell | 1 | -11/+12 | |
2006-05-23 | Fix culling calculations for FBOs | Keith Whitwell | 2 | -1/+12 | |
2006-04-18 | glPopAttrib() GL_DRAW_BUFFER state fix, from trunk | Brian Paul | 1 | -2/+13 | |
2006-04-05 | remove a debug message | Brian Paul | 1 | -1/+1 | |
2006-03-29 | silence debug messagestexman_0_1_20060330 | Keith Whitwell | 6 | -40/+62 | |
2006-03-29 | fix ReadBuffer mapping bugs | Brian Paul | 1 | -1/+3 | |
2006-03-29 | Bump driver date. | Thomas Hellström | 3 | -12/+14 | |
Keep the lock mutex locked while we hold the heavyweight lock. | |||||
2006-03-29 | Turn compiler optimizations back on. | Keith Whitwell | 1 | -1/+2 | |
2006-03-29 | Age the last_swap_fence properly. | Thomas Hellström | 4 | -1/+21 | |
Should be safe unless the client idles without rendering for some time, while another client renders. | |||||
2006-03-27 | Protect the DRI __driUtilUpdateDrawable code and other "complex" code | Keith Whitwell | 2 | -1/+10 | |
inside intelGetLock() with a mutex. Fixes problems with multithreaded applications dying when moving windows, etc. There seem to be multiple traps for threaded apps in that code, this is a bandaid on those. | |||||
2006-03-27 | remove a temporary FBO test in intel_map_unmap_buffers() - fixes flickering ↵ | Brian Paul | 1 | -1/+1 | |
in tunnel demo | |||||
2006-03-27 | zero-valued fences are not considered retired for a system that has been | Thomas Hellström | 6 | -4/+15 | |
running for a day or so. Initialize to a better value. | |||||
2006-03-26 | remove some unneeded codetexman_0_1_20060325 | Brian Paul | 2 | -14/+0 | |
2006-03-25 | merge from trunk | Brian Paul | 126 | -12431/+19664 | |
2006-03-25 | Shorten ctx->Driver.RenderbufferTexture to ctx->Driver.RenderTexture since | Brian Paul | 7 | -23/+31 | |
calls to it no longer directly correspond to glRenderbufferTextureEXT. | |||||
2006-03-25 | Implement software fallback for render-to-texture when the texture format | Brian Paul | 3 | -27/+64 | |
can't be rendered by the hardware. | |||||
2006-03-25 | fix a couple issues in _mesa_free_framebuffer_data() | Brian Paul | 1 | -1/+3 | |
2006-03-25 | comments | Brian Paul | 4 | -3/+9 | |
2006-03-25 | Implement rendering to textures for any mipmap level, any cube face, any | Brian Paul | 4 | -49/+58 | |
3D texture slice. Added draw_offset to intel_region struct. | |||||
2006-03-25 | check if copying from FBO, adjust x, y accordingly | Brian Paul | 1 | -8/+16 | |
2006-03-25 | Check for incomplete framebuffer in _mesa_Clear() | Brian Paul | 1 | -1/+7 | |
2006-03-25 | unlock mutex before freeing data (caught w/ valgrind) | Brian Paul | 1 | -2/+2 | |
2006-03-25 | Replace _mesa_destroy_context() with _mesa_free_context_data() because ctx | Brian Paul | 1 | -2/+1 | |
is a member of the intel_context struct and the former calls frees the ctx pointer - BAD. | |||||
2006-03-25 | silence several -pedantic warnings | Brian Paul | 1 | -4/+11 | |
2006-03-25 | remove stray semicolon | Brian Paul | 1 | -1/+1 | |
2006-03-25 | s/inline/INLINE/ to allow use of -ansi flag with gcc. | Brian Paul | 7 | -13/+13 | |
2006-03-24 | merge from trunk | Brian Paul | 1 | -72/+79 | |
2006-03-24 | In i915/i830_update_tex_unit() get the firstImage pointer _after_ we've called | Brian Paul | 2 | -2/+12 | |
intel_finalize_mipmap_tree(). This fixes a problem where the wrong mipmap level was used when the texture's GL_TEXTURE_BASE_LEVEL value wasn't zero. But this only happened the first time the texture was used. That took a while to track down! | |||||
2006-03-24 | added some missing formats in _mesa_source/dest_buffer_exists() | Brian Paul | 1 | -2/+16 | |
2006-03-24 | better switch cases | Brian Paul | 1 | -1/+6 | |
2006-03-24 | update scissor at end of intel_draw_buffer() | Brian Paul | 1 | -0/+4 | |
2006-03-24 | no need to pass ctx to _mesa_clip_to_region() | Brian Paul | 5 | -8/+6 | |
2006-03-24 | update i915/i830Scissor to use DrawBuffer instead of driDrawable bounds | Brian Paul | 2 | -26/+12 | |
2006-03-24 | minor clean-ups | Brian Paul | 1 | -3/+4 | |
2006-03-24 | more fixes and clean-up in intelCopyBuffer() | Brian Paul | 1 | -14/+9 | |
2006-03-23 | some comments | Brian Paul | 1 | -0/+3 | |
2006-03-23 | just comments | Brian Paul | 1 | -2/+3 | |
2006-03-23 | another intelFlush() call | Brian Paul | 1 | -1/+3 | |
2006-03-23 | fix some mapping bugs | Brian Paul | 1 | -4/+4 | |
2006-03-23 | check for NULL rb in _mesa_framebuffer_renderbuffer() | Brian Paul | 1 | -2/+4 | |
2006-03-23 | Added an intelFlush() call inside intel_bind_framebuffer() to be sure | Brian Paul | 1 | -0/+5 | |
any previous rendering is completed. Not sure why this is needed when _mesa_BindFramebufferEXT() does a FLUSH_VERTICES() call. This fixes an offset/wrap-around bug when rendering to FBOs. |