@Daniel, Blurry text is caused by anti-aliasing on the text. (Disable multisample in the user preferences then restart and it looks fine).
I'm getting this problem too and it seems to be caused by glDisable(GL_MULTISAMPLE_ARB); not working at all on NVidia-v310.19. The way its supposed to work - multisample gets enabled when initializing opengl in ghost - then disabled by default in activateDrawingContext() - areas of blender that can make use of it temporarily enable - drawing objects in the viewport for example. But none of this is working for me, its always enabled. On Sat, Nov 24, 2012 at 9:36 AM, Daniel Salazar - 3Developer.com <[email protected]> wrote: > Hi Bastien, thanks for your reply. I haven't been able to do it yet, > for now i dissabled international but I'm getting blurry text in some > places :( Will have to update my distro i guess! > > cheers > > Daniel Salazar > patazstudio.com > > > On Mon, Nov 12, 2012 at 1:48 AM, Bastien Montagne <[email protected]> > wrote: >> Hi Daniel, >> >> You are probably using your distrib's boost libs? In this case, you have >> to install boost-locale-dev package as well… ;) >> >> On 12/11/2012 04:56, Daniel Salazar - 3Developer.com wrote: >>> Hi Cambo, Unfortunately building is still failing here >>> >>> http://www.pasteall.org/37134 >>> >>> Daniel Salazar >>> patazstudio.com >>> >>> >>> On Sun, Nov 11, 2012 at 9:37 PM, Campbell Barton<[email protected]>wrote: >>> >>>> Revision: 52130 >>>> >>>> http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=52130 >>>> Author: campbellbarton >>>> Date: 2012-11-12 03:37:28 +0000 (Mon, 12 Nov 2012) >>>> Log Message: >>>> ----------- >>>> build fix: recent commit broke building on 64bit linux >>>> >>>> Modified Paths: >>>> -------------- >>>> trunk/blender/doc/python_api/rst/info_gotcha.rst >>>> trunk/blender/source/blender/editors/gpencil/gpencil_paint.c >>>> trunk/blender/source/blender/makesdna/DNA_gpencil_types.h >>>> >>>> Modified: trunk/blender/doc/python_api/rst/info_gotcha.rst >>>> =================================================================== >>>> --- trunk/blender/doc/python_api/rst/info_gotcha.rst 2012-11-12 >>>> 03:26:40 UTC (rev 52129) >>>> +++ trunk/blender/doc/python_api/rst/info_gotcha.rst 2012-11-12 >>>> 03:37:28 UTC (rev 52130) >>>> @@ -130,7 +130,7 @@ >>>> * Exit edit-mode before running the tool. >>>> * Explicitly update the mesh by calling >>>> :class:`bmesh.types.BMesh.to_mesh`. >>>> * Modify the script to support working on the edit-mode data directly, >>>> see: :mod:`bmesh.from_edit_mesh`. >>>> -* Report the context as incorrect and only allow the script to run when >>>> editmode is disabled. >>>> +* Report the context as incorrect and only allow the script to run >>>> outside edit-mode. >>>> >>>> >>>> .. _info_gotcha_mesh_faces: >>>> >>>> Modified: trunk/blender/source/blender/editors/gpencil/gpencil_paint.c >>>> =================================================================== >>>> --- trunk/blender/source/blender/editors/gpencil/gpencil_paint.c >>>> 2012-11-12 03:26:40 UTC (rev 52129) >>>> +++ trunk/blender/source/blender/editors/gpencil/gpencil_paint.c >>>> 2012-11-12 03:37:28 UTC (rev 52130) >>>> @@ -780,7 +780,7 @@ >>>> float delta = pt_tmp[1].time; >>>> int j; >>>> >>>> - gps->inittime += delta; >>>> + gps->inittime += (double)delta; >>>> >>>> pts = gps->points; >>>> for (j = 0; j< gps->totpoints; j++, pts++) { >>>> @@ -817,7 +817,7 @@ >>>> float delta = pt_tmp[i].time; >>>> int j; >>>> >>>> - gsn->inittime += delta; >>>> + gsn->inittime += (double)delta; >>>> >>>> pts = gsn->points; >>>> for (j = 0; j< gsn->totpoints; j++, pts++) { >>>> >>>> Modified: trunk/blender/source/blender/makesdna/DNA_gpencil_types.h >>>> =================================================================== >>>> --- trunk/blender/source/blender/makesdna/DNA_gpencil_types.h 2012-11-12 >>>> 03:26:40 UTC (rev 52129) >>>> +++ trunk/blender/source/blender/makesdna/DNA_gpencil_types.h 2012-11-12 >>>> 03:37:28 UTC (rev 52130) >>>> @@ -56,10 +56,8 @@ >>>> >>>> short thickness; /* thickness of stroke (currently >>>> not used) */ >>>> short flag; /* various settings about >>>> this stroke */ >>>> - >>>> - float pad; >>>> + >>>> double inittime; /* Init time of stroke */ >>>> - float pad2; >>>> } bGPDstroke; >>>> >>>> /* bGPDstroke->flag */ >>>> >>>> _______________________________________________ >>>> Bf-blender-cvs mailing list >>>> [email protected] >>>> http://lists.blender.org/mailman/listinfo/bf-blender-cvs >>>> >>> _______________________________________________ >>> Bf-committers mailing list >>> [email protected] >>> http://lists.blender.org/mailman/listinfo/bf-committers >>> >> >> _______________________________________________ >> Bf-committers mailing list >> [email protected] >> http://lists.blender.org/mailman/listinfo/bf-committers > _______________________________________________ > Bf-committers mailing list > [email protected] > http://lists.blender.org/mailman/listinfo/bf-committers -- - Campbell _______________________________________________ Bf-committers mailing list [email protected] http://lists.blender.org/mailman/listinfo/bf-committers
