Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-28 | intel: Allow binding a stencil but not a depth buffer. | Eric Anholt | |
Wine's d3d9 visual.c testcase tries this a lot, so I've added some piglit tests (fbo-nodepth-test, fbo-nostencil-test, fbo-stencil-only) and enabled it. | |||
2009-12-28 | intel: Improve INTEL_DEBUG=fbo output. | Eric Anholt | |
2009-12-28 | intel: Remove dead fthrottle_mode option. We only do IRQ waits. | Eric Anholt | |
Noticed by clang. | |||
2009-12-22 | intel: Replace some gen3 IS_* checks with context structure usage. | Eric Anholt | |
Shaves 400 bytes or so from i915_dri.so. | |||
2009-12-22 | intel: Replace IS_965 checks with context structure usage. | Eric Anholt | |
Saves another 600 bytes or so of code. | |||
2009-12-22 | intel: Replace IS_G4X() across the driver with context structure usage. | Eric Anholt | |
Saves ~2KB of code. | |||
2009-12-22 | intel: Replace IS_IGDNG checks with intel->is_ironlake or needs_ff_sync. | Eric Anholt | |
Saves ~480 bytes of code. | |||
2009-12-22 | intel: Fix leakage of active texture state in glBitmap fp metaops. | Eric Anholt | |
Noticed by clang. | |||
2009-12-22 | intel: Remove unused stored values reported by clang. | Eric Anholt | |
2009-12-21 | intel: Replace release info in DRIVER_DATE with "DEVELOPMENT" | Ian Romanick | |
2009-12-21 | Merge branch 'mesa_7_7_branch' | Ian Romanick | |
Conflicts: src/mesa/main/version.h | |||
2009-12-21 | intel: Bump driver date to reflect status as final Q4 driver RC | Ian Romanick | |
2009-12-21 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
Conflicts: src/mesa/main/version.h src/mesa/state_tracker/st_atom_shader.c | |||
2009-12-11 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
Conflicts: src/gallium/state_trackers/xorg/xorg_xv.c src/mesa/drivers/dri/intel/intel_span.c | |||
2009-12-10 | intel: Remove ARGB internal_format == GL_RGB hacks | Ian Romanick | |
Now that XRGB is supported, we don't need to hack around cases of an RGBA format buffer with an internal format of GL_RGB. | |||
2009-12-10 | intel: Make RGB textures use XRGB8888 | Ian Romanick | |
2009-12-10 | intel: Make RGB renderbuffers use XRGB8888 like we do for RGB system buffers. | Ian Romanick | |
2009-12-10 | intel: Use spantmp2 GL_BGR / GL_UNSIGNED_INT_8_8_8_8_REV for XRGB8888 | Ian Romanick | |
2009-12-10 | intel: name in intel_create_renderbuffer was always 0, remove | Ian Romanick | |
2009-12-10 | intel: Use texformat accessor to get bytes-per-pixel | Ian Romanick | |
2009-12-10 | intel: softwareBuffer in intel_alloc_renderbuffer_storage was always false, ↵ | Ian Romanick | |
remove | |||
2009-12-10 | intel: Axe intel_renderbuffer::texformat | Ian Romanick | |
Since the texformat branch merge, the value of intel_renderbuffer::texformat is just a copy of gl_renderbuffer::Format. | |||
2009-12-10 | intel: Flush the render/texture cache when finishing render to texture. | Eric Anholt | |
Back when we were flushing the entire batch at BindFramebuffer, the kernel would notice the domain transition when someone went to texture from it and flush for us. We no longer do the batch flushing every time, so we get to do aggressive flushing until we move batchbuffer handling to libdrm. Fixes piglit fbo-flushing. Bug #25377. No noticeable performance loss on cairo-gl (so this is better than batch flushing). | |||
2009-12-08 | i965: Enable the accelerated ReadPixels path on gen4 along with pre-gen4. | Eric Anholt | |
Passes piglit pbo-read-argb8888, and doesn't otherwise regress quick.tests. | |||
2009-12-08 | Merge branch 'mesa_7_7_branch' | Andre Maasikas | |
Conflicts: src/mesa/drivers/dri/r600/r700_assembler.c src/mesa/main/version.h | |||
2009-12-07 | Revert "intel: Make RGB renderbuffers use XRGB8888 like we do for RGB system ↵ | Ian Romanick | |
buffers." This reverts commit 4598942b1b88a2a7d5af7febae7e79eedf00e385. XRGB8888 doesn't work as intended. Revert this for now, and we'll revisit it for 7.8 or something. | |||
2009-12-02 | Merge branch 'mesa_7_7_branch' | Jakob Bornecrantz | |
2009-12-02 | Merge commit 'mesa_7_6_branch' into mesa_7_7_branch | Jakob Bornecrantz | |
Conflicts: src/mesa/main/version.h | |||
2009-12-02 | intel: Make RGB renderbuffers use XRGB8888 like we do for RGB system buffers. | Eric Anholt | |
2009-12-01 | intel: Remove GL_NV_point_sprite from extension list | Ian Romanick | |
i830 does not (and cannot!) support the any of the non-default GL_POINT_SPRITE_R_MODE_NV settings. i915 and i965 could, but currently do not. In both cases it would require mucking about with the fragment shader. | |||
2009-12-02 | intel: Fix more front-buffer rendering after Brian's less flushing patch. | Eric Anholt | |
bcbfda71b03303d3f008a6f3cf8cb7d9667bf8d2 left out many blit paths. This fixes up more of them to get Blender to work again. Bug #25030. | |||
2009-12-01 | Merge commit 'origin/mesa_7_7_branch' | Keith Whitwell | |
Conflicts: src/gallium/drivers/svga/svga_screen_texture.c src/gallium/state_trackers/xorg/xorg_composite.c src/gallium/state_trackers/xorg/xorg_exa.c src/gallium/state_trackers/xorg/xorg_renderer.c src/gallium/state_trackers/xorg/xorg_xv.c src/mesa/main/texgetimage.c src/mesa/main/version.h | |||
2009-11-30 | Merge branch 'mesa_7_6_branch' into mesa_7_7_branch | Ian Romanick | |
Conflicts: progs/util/shaderutil.c src/mesa/drivers/dri/r600/r600_context.c src/mesa/main/version.h | |||
2009-11-23 | i915: Initialize Length and Offset fields when mapping a buffer object | Ian Romanick | |
This fixes an assertion failure in _mesa_MapBufferARB. Fixes bugzilla #25253. | |||
2009-11-23 | Merge commit 'origin/mesa_7_7_branch' | Maciej Cencora | |
2009-11-21 | intel: make CopyTex[Sub]Image fallback debug messages more consistent | Roland Scheidegger | |
2009-11-19 | intel: Remove non-GEM support. | Eric Anholt | |
This really isn't supported at this point. GEM's been in the kernel for a year, and the fake bufmgr never really worked. | |||
2009-11-19 | intel: Remove dead intel_context members and move some packing around. | Eric Anholt | |
2009-11-19 | intel: Remove our special color packing macros and just use colormac.h. | Eric Anholt | |
2009-11-19 | intel: Pack colors for blit at blit time, rather than at ClearColor. | Eric Anholt | |
2009-11-19 | intel: Consistently use no_batch_wrap in intel_context struct. | Eric Anholt | |
2009-11-19 | i915: Remove dead meta_draw_quad code. | Eric Anholt | |
2009-11-16 | i965: Use MESA_FORMAT_AL1616 when appropriate | Ian Romanick | |
2009-11-13 | intel: Remove some dead context structure fields. | Eric Anholt | |
2009-11-13 | i965: Remove an unused cache_item field. | Eric Anholt | |
2009-11-13 | i965: Use bo_map instead of subdata to upload the bits of constant buffer. | Eric Anholt | |
Saves CPU time, resulting in a 2.5% FPS win on ETQW. | |||
2009-11-13 | intel: When subdataing a busy buffer, use a temporary and blit in. | Eric Anholt | |
This cuts a massive number of waits in ET:QW, which uses a VBO ringbuffer. Unfortunately it doesn't BufferData when wrapping back to 0, so we can't be clever with tracking what's been initialized. | |||
2009-11-12 | intel: Don't check for context pointer to be NULL during extension init | Ian Romanick | |
Thanks to Chia-I Wu's changes to the extension function infrastructure, we no longer have to tell the loader which extensions the driver might enable. This means that intelInitExtensions will never be called with a NULL context pointer. Remove all the NULL checks. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Eric Anholt <eric@anholt.net> | |||
2009-11-12 | intel: Remove unused enable_imaging parameter to intelInitExtensions | Ian Romanick | |
2009-11-06 | intel: better front color buffer test in intelClear() | Brian Paul | |