Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-05-17 | i965: Add SF program disasm under INTEL_DEBUG=sf. | Eric Anholt | |
2010-05-17 | intel: Call intel_draw_buffer() again after _mesa_make_current() | Kristian Høgsberg | |
The initial call to intel_draw_buffers() happens when intel->ctx.DrawBuffer is still NULL. Call it again after calling _mesa_make_current(). https://bugs.freedesktop.org/show_bug.cgi?id=28112 | |||
2010-05-17 | i965: Make rasterization of single and multiple quad prims match. | Eric Anholt | |
This is trying to follow the spirit of the invariance rules, though they're not specific on this point. Fixes quad-invariance piglit test while retaining the 22s -> 18s win on glean blendFunc. This was a regression in c67d9d84f501f145f841c0b981caff6f4dfd936f. | |||
2010-05-16 | i965: Remove the half-baked code for multiple OQs at the same time. | Eric Anholt | |
GL doesn't actually let you begin an OQ while one is active, so the extra work was pointless. | |||
2010-05-16 | i965: Remove unused occlusion query struct field. | Eric Anholt | |
2010-05-16 | r300/compiler: fix peephole optimizer | Tom Stellard | |
Tested-by: Marek Olšák <maraeo@gmail.com> | |||
2010-05-16 | r300/compiler: Implement simple peephole optimizer | Nicolai Hähnle | |
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2010-05-15 | r300/compiler: silence a warning | Marek Olšák | |
2010-05-14 | i965: Set the correct provoking vertex for clipped first-mode trifans. | Eric Anholt | |
Bug #24470: glean clipFlat test. | |||
2010-05-14 | i965: Add program dumping for INTEL_DEBUG=gs. | Eric Anholt | |
2010-05-14 | i965: Parse the ff_sync URB send opcode on Ironlake disasm. | Eric Anholt | |
2010-05-14 | i965: Use R16G16B16A16_FLOAT for 3-component half-float. | Eric Anholt | |
The RGBX version isn't supported as a vertex input type, but since we force the last channel's value anyway, this should be fine. The only potential risk I see is in the limiter on VBO reads past the end of the buffer forcing the whole vertex to 0 when the A channel lands past the end. Fixes piglit draw-vertices-half-float. | |||
2010-05-14 | i965: Dump out the correct shared function for SEND on Ironlake. | Eric Anholt | |
2010-05-14 | i965: Support INTEL_DEBUG=clip to dump the clip program. | Eric Anholt | |
2010-05-14 | intel: Handle arbitrary compressed formats in intel_compressed_num_bytes. | Eric Anholt | |
Note that we don't support arbitrary block size for compressed quite yet -- block height of 4 is hard-coded all over the place. Bug #27098 (srgb dxt1 producing a bytes per pixel of 0). | |||
2010-05-13 | i965: Reduce a single GL_QUADS to GL_TRIANGLE_FAN. | Eric Anholt | |
This is similar to the GL_QUAD_STRIP -> TRIANGLE_STRIP optimization -- the GS usage to split the quads into tris is a huge bottleneck, so a quick check improves glean blendFunc time massively (width * height of the window of single-pixel GL_QUADS, many many times). This may also end up helping with cairo performance, which sometimes ends up drawing a single quad. | |||
2010-05-13 | intel: Don't update window system renderbuffers on TexImage. | Eric Anholt | |
While sometimes rendering occurs in the form of blits for TexImage, it doesn't interact with the window system renderbuffers, so skip it. | |||
2010-05-11 | intel: Don't update renderbuffers in intelSetTexBuffer2 if we have invalidate | Kristian Høgsberg | |
2010-05-11 | intel: Drop viewport hack when we can | Kristian Høgsberg | |
2010-05-10 | intel: Also flush front buffer in glFinish() | Kristian Høgsberg | |
2010-05-10 | i915: Drop intelFlush(). | Vinson Lee | |
This was missed in commit c4775a27e3aaa2006b98f225387499b79bc609ef. Fixes i915 build. | |||
2010-05-10 | intel: Drop intelFlush() | Kristian Høgsberg | |
Now that intel_flush() deosn't use the needs_mi_flush argument, we can finally drop one of the two flush functions. | |||
2010-05-10 | intel: Only flush fake front buffer on API level glFlush() | Kristian Høgsberg | |
Without this patch, any old intel_flush() call will cause a round trip to the server and do a copy from fake to real front. We only actually guarantee that frontbuffer results show up when glFlush() ia called, so move the flushing to intel_glFlush(). We also need to flush fake to front before getting new buffers, but we just handle that manually. | |||
2010-05-10 | intel: Don't mark front buffer dirty if we're only reading | Kristian Høgsberg | |
When we call intel_prepare_render() from intelReadPixels(), we'll mark the front buffer dirty. That's silly, since we're only reading from it and marking it dirty will cause us to copy from fake front to front eventually. Just clear the dirty flag after doing the read. | |||
2010-05-10 | intel: Mark frontbuffer dirty in intel_prepare_render() | Kristian Høgsberg | |
Now that we have intel_prepare_render() in place, we can use it to mark the front buffer dirty if we're rendering to the front buffer once we get there. | |||
2010-05-08 | r300g: respect compare mode regardless of sampler type | Marek Olšák | |
2010-05-08 | r300/compiler: fake equal/notequal for shadow samplers | Marek Olšák | |
This is actually better than a real implementation, which would be useless due to inaccuracy (I know because I've tried to implement it). | |||
2010-05-08 | r300/compiler: use perspective division only for TXP in shadow samplers | Marek Olšák | |
2010-05-08 | r300/compiler: make shadow sampler codegen more readable, add comments | Marek Olšák | |
2010-05-08 | r300/compiler: shorten RC_*SWIZZLE* expressions | Marek Olšák | |
2010-05-08 | r300/compiler: generalize depth texture mode to support arbitrary swizzles | Marek Olšák | |
2010-05-08 | r300/compiler: fix LIT instruction case 0^0 = 1 | Marek Olšák | |
2010-05-07 | glapi: Move to src/mapi/. | Chia-I Wu | |
Move glapi to src/mapi/{glapi,es1api,es2api}. | |||
2010-05-04 | i965: When an RB gets a new region, clear the old from the state cache. | Eric Anholt | |
This prevents memory usage explosion in blender due to the state cache hanging on to old fake frontbuffer regions. Sigh at blender still using frontbuffer rendering. Bug #24119. | |||
2010-05-04 | intel: Don't tile textures so small that size is blown up by over 2x. | Eric Anholt | |
Noted on the mailing list for an app that puts each glyph for its text into a separate texture. | |||
2010-05-04 | intel: Update renderbuffers unconditionally in intelSetTexBuffer2() | Kristian Høgsberg | |
2010-05-04 | intel: Enable GL_EXT_framebuffer_object for gles2 | Kristian Høgsberg | |
2010-05-03 | driswrast: Fix more context creation breakage | Kristian Høgsberg | |
Pointed out by Colin Harrison. | |||
2010-05-03 | nouveau: fix nouveau_create_context decleration | Dave Airlie | |
2010-05-03 | swrast: Correct include for mtypes.h | Jakob Bornecrantz | |
2010-05-02 | Update drisw state tracker to use new API aware context create | Xavier Chantry | |
Even though swrast defines its own __DriverAPIRec it still shares the driCreateNewContext() implementation from dri_util.c. So the CreateContext prototypes have to match in the two __DriverAPIRecs. Reviewed-by: Jakob Bornecrantz <jakob@vmware.com> Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com> | |||
2010-05-02 | Merge branch 'gles2-2' | Kristian Høgsberg | |
Conflicts: src/mesa/drivers/dri/common/dri_util.h | |||
2010-04-28 | intel: Only register ES2 extensions for ES2 contexts | Kristian Høgsberg | |
2010-04-28 | configure.ac: Add options to enable GLES1/2 API support | Kristian Høgsberg | |
2010-04-28 | intel: Advertise GLES1/2 for i915+ when enabled | Kristian Høgsberg | |
2010-04-28 | dri: Add DRI entrypoints to create a context for a given API | Kristian Høgsberg | |
2010-04-28 | dri: Add DRI entrypoints to create a context for a given API | Kristian Høgsberg | |
2010-04-21 | radeon: fix warning | Marek Olšák | |
2010-04-21 | intel: Add Sandybridge mobile chipset id | Zhenyu Wang | |
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com> | |||
2010-04-21 | intel: Clean up chipset name and gen num for Ironlake | Zhenyu Wang | |
Rename old IGDNG to Ironlake, and set 'gen' number for Ironlake as 5, so tracking the features with generation num instead of special is_ironlake flag. Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com> |