Re: [Mesa-dev] typo in commit 9976a176

2013-11-13 Thread Ferry Huberts
On 13/11/13 16:42, Ferry Huberts wrote: The link in http://cgit.freedesktop.org/mesa/mesa/diff/docs/index.html?id=9976a176ae62d53e8ad0c0f934d207e22ac41e85 is wrong, points to 9.2.2 i.s.o. 9.2.3 ah, and here as well http://cgit.freedesktop.org/mesa/mesa/diff/docs/relnotes.html?id

[Mesa-dev] typo in commit 9976a176

2013-11-13 Thread Ferry Huberts
The link in http://cgit.freedesktop.org/mesa/mesa/diff/docs/index.html?id=9976a176ae62d53e8ad0c0f934d207e22ac41e85 is wrong, points to 9.2.2 i.s.o. 9.2.3 -- Ferry Huberts ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http

Re: [Mesa-dev] [PATCH] mesa: fix MapBufferRange/MapBuffer typo in create_beginend_table()

2013-04-22 Thread Ferry Huberts
On 22/04/13 21:03, Brian Paul wrote: > On 04/22/2013 12:17 PM, Ferry Huberts wrote: >> >> >> On 22/04/13 19:38, Brian Paul wrote: >>> MapBufferRange was present twice. MapBuffer was missing. >>> >>> Note: This is a candidate for the stable branch

Re: [Mesa-dev] [PATCH] mesa: fix MapBufferRange/MapBuffer typo in create_beginend_table()

2013-04-22 Thread Ferry Huberts
); It's already here > COPY_DISPATCH(UnmapBuffer); > - COPY_DISPATCH(MapBufferRange); > + COPY_DISPATCH(MapBuffer); > COPY_DISPATCH(MapBufferRange); Maybe 'UnmapBufferRange'? > COPY_DISPATCH(ObjectPurgeableAP

Re: [Mesa-dev] Mesa master branch: forced update

2012-07-10 Thread Ferry Huberts
't make things worse... ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev -- Ferry Huberts ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.

Re: [Mesa-dev] Mesa (master): draw: fix flat shading and screen-space linear interpolation in clipper

2012-06-29 Thread Ferry Huberts
On 29-06-12 21:03, Stéphane Marchesin wrote: I'll send a revert for those, is there a way to do it without reverting the rest of the series? yeah, just revert the commit you want and then via 'amend' take out the parts you don't want to revert (git gui is nice for doi

Re: [Mesa-dev] [PATCH] Clean up GL3 status

2011-12-24 Thread Ferry Huberts
On 24-12-11 14:45, Brian Paul wrote: > On Fri, Dec 23, 2011 at 1:19 PM, Matt Turner wrote: >> The (swrast, i965, gallium, r600g) tuples are inconsistent and >> confusing. If swrast, i965, and gallium support something, let's simply >> say DONE without qualifying it. > > Hmm, I'm in favor of cle

Re: [Mesa-dev] OpenGL driver detection now implemented in Firefox/X11; some questions

2011-05-16 Thread Ferry Huberts
tag naming convention) >> >> Hopefully someone can look at the bugs you've hit, get them fixed soon >> and get a new Mesa release out with a version you can test against. > > Thanks! > Benoit > ___ > mesa-dev maili

Re: [Mesa-dev] [PATCH 1/3] util: add a simple memcpy path for copying buffers in util_resource_copy_region

2011-04-21 Thread Ferry Huberts
- 0); > + if (dst->target == PIPE_BUFFER && src->target == PIPE_BUFFER) { > + memcpy(dst_map, src_map, w); this will not work if dst_map and src_map overlap... if you're sure that they never overlap: ok, else maybe use memmove?

Re: [Mesa-dev] Coding or Table based approach for r600g? (was RFC: 0001-r600g-R700-can-do-more-than-8-tex-and-vtx-clauses.patch)

2011-03-09 Thread Ferry Huberts
things that > are never going to change after initialization. yeah, that was my point. the table is only _a_ solution. a different solution I sometimes employ is to lazily determine the value on first use and then keep it cached. that requires an extra state variable howev

Re: [Mesa-dev] RFC: 0001-r600g-R700-can-do-more-than-8-tex-and-vtx-clauses.patch

2011-03-08 Thread Ferry Huberts
replaced by retrieving a field from the structure, since the function only returns a constant (dependent on the type of the card). grtz -- Ferry Huberts ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] Project ideas [was Re: Gallium3D and Glide]

2011-03-01 Thread Ferry Huberts
very good idea: it's how I used to test ASIC designs with C-model against register model. works perfectly and is invaluable for finding regressions! -- Ferry Huberts ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev