Display antialiasing?

I downloaded a trial of PSE10.
If I load a very sharp image or a very noisy image, then I get a lot of artefacts in the display if I zoom out.
It seems to me that PSE is not using any interpolation for zooming the preview.
If I load the very same image file into Windows Photo viewer or into the Faststone image browser or into Picasa or into Photoline32 or into CS2 or into CS5 it looks fine.
Look this screenshot: Left side is displayed in Photoline32, right side is in PSE10. It is the very same image, transferred via clipboard from PSE10 into PL32.
I understand well this is a downstripped version with reduced features, but I feel that such an restriction on the display is inappropriate nowadays for any Photoediting software.
I hope Adobe people read this and forward it to the PSE team....
My trial is now expired, so I am unable to try again, but anyway I use CS5 now, but really, this should be improved.
TIA,
Peter

Upbraded to the 1.5.0 beta and no change.
Also happens if i run the java control panel, then say the javaws program. They are interfering with each other, not just with Directx apps.

Similar Messages

  • OpenGL ES iPhone - Smooth (Antialiases) Textures

    Hi
    Does anyone has a idea how to make textures displayed antialiased in opengl es?
    id like to code something like a "cover flow" in the ipod application.
    thanks

    Yes, I have try with the latest version. I will retest this evening.
    A detail : with workaround, I have installed the iPhone SDK on a PPC G4 Mac, maybe an incompatibility problem ?
    Yet, the GLSprite example work fine.
    But when I modify the texture "Sprite.png" of the GLSprite example, with a red rectangle in the texture, I have a strange problem : The originals colors of the texture are good, but the rectangle is not red, but clear blue color.
    I don't understand ? Why this texture work partially, and the modification is corrupted ??

  • Display problems when antialiasing is enabled

    I've written a Java app which uses a JPanel-derived class to render images and text in the paint() method.
    This works fine unless I've enabled antialiasing in my video card settings (GeForce FX 5200 w/128MB RAM, Windows XP), in which case nothing but a gray window appears. Disabling antialiasing in the video card settings fixes the problem. Multiple users with different video cards have reported the same problem (so its not something specific to my card and/or drivers).
    Is there something in my code I can do to ensure my app will properly render regardless of whether or not antialiasing is turned on on the user's machine?
    Note that I also tested with a simple frame containing a progress bar and saw the same issue, i.e. the Swing components themselves didn't properly render with antialiasing turned on.
    Any ideas?

    Hi,
    Thanks, that seems to be doing a bit better. I am still having a bit of trouble though, mainly, the TV seems to be flickering very slightly throughout. Strangely, I did not have this problem when using a composite connection. Is there a setting somewhere to make for a clearer picture? For example, when I run the external display calibration application, and it asks me to adjust the background so it is the same color as the apple logo in the picture, the apple logo is constantly flickering (changing color from white to gray to black or so very rapidly).
    Also, I am mainly using the TV connection to watch front row. How can I get front row to operate on the external display if I do not have them set to mirror each other?
    Thanks a lot,
    Will

  • Mouse Not Antialiased After Wake from Sleep? (on external display)

    I've been noticing something very strange lately: after waking the MacBook Pro from sleep, the mouse on the screen is no longer antialiased and is instead quite rough looking — it also has no shadow. I've only noticed this when using an external display. If I'm using the MacBook's built-in screen instead this doesn't happen. Not really a huge problem but I was wondering if anybody else had this issue and if there's a fix. Thanks.

    I'm sorry, what? Forgive me if I say that your reply doesn't make any sense. This issue almost certainly has nothing to do with the hard drive failing (or being too stressed), nor is it a lack of RAM. In fact, given that it's only with the external display (Apple LED display), it really almost certainly has nothing to do with the hardware it all. Without a doubt, it would appear, it is a software bug of some kind. For example, if I log out and log back in again, it's fine. So, a minor annoyance, but I'm curious if anyone knows about it/knows of a fix.
    For the record, I haven't "bell/whistle"d the Finder at all. I don't see how that's relevant in any way, anyway.
    I personally speculate this is some sort of bug with Mac OS X; I was wondering if anyone else had had a similar issue.

  • Odd behavior when using custom Composite/CompositeContext and antialiasing

    Hi,
    I created a custom Composite/CompositeContext class and when I use it with antialiasing it causes a black bar to appear. I seems it has nothing to do with the compose() code but just that fact that I set my own Composite object. The submitted code will show you what I mean. There are 3 check boxes 1) allows to use the custom Composite object, 2) allows to ignore the compose() code in the CompositeContext and 3) toggles the antialiasing flag in the rendering hints. When the antialiasing flag is set and the Composite object is used the bar appears regardless of if the compose() method is executed or not. If the Composite object is not used the bar goes away.
    The Composite/CompositeContext class performs clipping and gradient paint using a Ellipse2D.Float instance.
    a) When the Composite is not used the code does a rectangular fill.
    b) When the Composite is used it should clip the rectangular fill to only the inside of a circle and do a gradient merge of background color and current color.
    c) If the compose() method is ignored then only the background is painted.
    d) When antialiasing is turned on the black bar appears, i) if you ignore the compose() method it remains, ii) if you do not use the Composite object the bar disappears (???)
    NOTE: the compose method's code is only for illustration purposes, I know that AlphaComposite, clipping and/or Gradient paint can be used to do what the example does. What I am trying to find out is why the fact of simply using my Composite object with antialiasing will cause the odd behavior.  Been trying to figure it out but haven't, any help is appreciated.
    Thx.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import javax.swing.*;
    public class TestCustomComposite2
    extends JFrame
    implements ActionListener {
        private JCheckBox useCompositeChk, useAntialiasingChk, useCompositeContextChk;
        private Shape clippingShape = new Ellipse2D.Float(100, 100, 100, 100);
        private MergeComposite composite = new MergeComposite();
        public TestCustomComposite2() {
            super("Test Custom Composite");
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JPanel cp = (JPanel) getContentPane();
            cp.setLayout(new BorderLayout());
            cp.add(new TestCanvas(), BorderLayout.CENTER);
            JPanel panel = new JPanel(new FlowLayout(FlowLayout.LEFT, 0, 0));
            panel.add(useCompositeChk = new JCheckBox("Use Composite", true));
            useCompositeChk.addActionListener(this);
            panel.add(useCompositeContextChk = new JCheckBox("Use Composite Context", true));
            useCompositeContextChk.addActionListener(this);
            panel.add(useAntialiasingChk = new JCheckBox("Use Antialiasing"));
            useAntialiasingChk.addActionListener(this);
            cp.add(panel, BorderLayout.SOUTH);
            pack();
            setVisible(true);
        public void actionPerformed(ActionEvent evt) {
            useCompositeContextChk.setEnabled(useCompositeChk.isSelected());
            invalidate();
            repaint();
        private class TestCanvas
        extends JComponent {
            public TestCanvas() {
                setSize(300, 300);
                setPreferredSize(getSize());
            public void paint(Graphics gfx) {
                Dimension size = getSize();
                Graphics2D gfx2D = (Graphics2D) gfx;
                gfx2D.setColor(Color.GRAY);
                gfx2D.fillRect(0, 0, size.width, size.height);
                RenderingHints rh = null;
                if(useAntialiasingChk.isSelected()) {
                    rh = gfx2D.getRenderingHints();
                    gfx2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
                Rectangle r = clippingShape.getBounds();
                //gfx2D.setColor(Color.GREEN);
                //gfx2D.drawRect(r.x, r.y, r.width, r.height);
                gfx2D.setColor(Color.YELLOW);
                gfx2D.fill(clippingShape);
                Composite oldComposite = null;
                if(useCompositeChk.isSelected()) {
                    oldComposite = gfx2D.getComposite();
                    gfx2D.setComposite(composite);
                gfx2D.setColor(Color.ORANGE);
                gfx2D.fillRect(r.x, r.y, r.width + 1, r.height + 1);
                if(oldComposite != null)
                    gfx2D.setComposite(oldComposite);
                if(rh != null)
                    gfx2D.setRenderingHints(rh);
        public class MergeComposite
        implements Composite, CompositeContext {
            public CompositeContext createContext(ColorModel srcColorModel,
                                                  ColorModel dstColorModel,
                                                  RenderingHints hints) {
                return this;
            public void compose(Raster src,
                                Raster dstIn,
                                WritableRaster dstOut) {
                if(!useCompositeContextChk.isSelected())
                    return;
                int[] srcPixel = null;
                int[] dstPixel = null;
                for(int sy = src.getMinY(); sy < src.getMinY() + src.getHeight(); sy++) {
                    for(int sx = src.getMinX(); sx < src.getMinX() + src.getWidth(); sx++) {
                        int cx = sx - dstOut.getSampleModelTranslateX();
                        int cy = sy - dstOut.getSampleModelTranslateY();
                        if(!clippingShape.contains(cx, cy)) continue;
                        srcPixel = src.getPixel(sx, sy, srcPixel);
                        int ox = dstOut.getMinX() + sx - src.getMinX();
                        int oy = dstOut.getMinY() + sy - src.getMinY();
                        if(ox < dstOut.getMinX() || ox >= dstOut.getMinX() + dstOut.getWidth()) continue;
                        if(oy < dstOut.getMinY() || oy >= dstOut.getMinY() + dstOut.getHeight()) continue;
                        dstPixel = dstIn.getPixel(ox, oy, dstPixel);
                        float mergeFactor = 1.0f * (cy - 100) / 100;
                        dstPixel[0] = merge(mergeFactor, srcPixel[0], dstPixel[0]);
                        dstPixel[1] = merge(mergeFactor, srcPixel[1], dstPixel[1]);
                        dstPixel[2] = merge(mergeFactor, srcPixel[2], dstPixel[2]);
                        dstOut.setPixel(ox, oy, dstPixel);
            protected int merge(float mergeFactor, int src, int dst) {
                return (int) (mergeFactor * src + (1.0f - mergeFactor) * dst);
            public void dispose() {
        public static void main(String[] args) {
            new TestCustomComposite2();
    }

    I got a better version to work as expected. Though there will probably be issues with the transformation to display coordinates as mentioned before. At least figured out some of the kinks of using a custom Composite/CompositeContext object.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import javax.swing.*;
    public class TestCustomComposite2
    extends JFrame
    implements ActionListener {
        private JCheckBox useCompositeChk, useAntialiasingChk, useCompositeContextChk;
        private Shape clippingShape = new Ellipse2D.Float(100, 100, 100, 100);
        private MergeComposite composite = new MergeComposite();
        public TestCustomComposite2() {
            super("Test Custom Composite");
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JPanel cp = (JPanel) getContentPane();
            cp.setLayout(new BorderLayout());
            cp.add(new TestCanvas(), BorderLayout.CENTER);
            JPanel panel = new JPanel(new FlowLayout(FlowLayout.LEFT, 0, 0));
            panel.add(useCompositeChk = new JCheckBox("Use Composite", true));
            useCompositeChk.addActionListener(this);
            panel.add(useCompositeContextChk = new JCheckBox("Use Composite Context", true));
            useCompositeContextChk.addActionListener(this);
            panel.add(useAntialiasingChk = new JCheckBox("Use Antialiasing"));
            useAntialiasingChk.addActionListener(this);
            cp.add(panel, BorderLayout.SOUTH);
            pack();
            setVisible(true);
        public void actionPerformed(ActionEvent evt) {
            useCompositeContextChk.setEnabled(useCompositeChk.isSelected());
            invalidate();
            repaint();
        private class TestCanvas
        extends JComponent {
            public TestCanvas() {
                setSize(300, 300);
                setPreferredSize(getSize());
            public void paint(Graphics gfx) {
                Dimension size = getSize();
                Graphics2D gfx2D = (Graphics2D) gfx;
                gfx2D.setColor(Color.GRAY);
                gfx2D.fillRect(0, 0, size.width, size.height);
                RenderingHints rh = null;
                if(useAntialiasingChk.isSelected()) {
                    rh = gfx2D.getRenderingHints();
                    gfx2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
                Rectangle r = clippingShape.getBounds();
                //gfx2D.setColor(Color.GREEN);
                //gfx2D.drawRect(r.x, r.y, r.width, r.height);
                gfx2D.setColor(Color.YELLOW);
                gfx2D.fill(clippingShape);
                Composite oldComposite = null;
                if(useCompositeChk.isSelected()) {
                    oldComposite = gfx2D.getComposite();
                    gfx2D.setComposite(composite);
                gfx2D.setColor(Color.ORANGE);
                gfx2D.fillRect(r.x, r.y, r.width + 1, r.height + 1);
                if(oldComposite != null)
                    gfx2D.setComposite(oldComposite);
                if(rh != null)
                    gfx2D.setRenderingHints(rh);
        public class MergeComposite
        implements Composite, CompositeContext {
            public CompositeContext createContext(ColorModel srcColorModel,
                                                  ColorModel dstColorModel,
                                                  RenderingHints hints) {
                return this;
            public void compose(Raster src,
                                Raster dstIn,
                                WritableRaster dstOut) {
    //            dumpRaster("SRC   ", src);
    //            dumpRaster("DSTIN ", dstIn);
    //            dumpRaster("DSTOUT", dstOut);
    //            System.out.println();
                if(dstIn != dstOut)
                    dstOut.setDataElements(0, 0, dstIn);
                if(!useCompositeContextChk.isSelected())
                    return;
                int[] srcPixel = null;
                int[] dstPixel = null;
                int w = Math.min(src.getWidth(), dstIn.getWidth());
                int h = Math.min(src.getHeight(), dstIn.getHeight());
                int xMax = src.getMinX() + w;
                int yMax = src.getMinY() + h;
                for(int x = src.getMinX(); x < xMax; x++) {
                    for(int y = src.getMinY(); y < yMax; y++) {
                        try {
                            // THIS MIGHT NOT WORK ALL THE TIME
                            int cx = x - dstIn.getSampleModelTranslateX();
                            int cy = y - dstIn.getSampleModelTranslateY();
                            if(!clippingShape.contains(cx, cy)) {
                                dstPixel = dstIn.getPixel(x, y, dstPixel);
                                dstOut.setPixel(x, y, dstPixel);
                            else {
                                srcPixel = src.getPixel(x, y, srcPixel);
                                dstPixel = dstIn.getPixel(x, y, dstPixel);
                                float mergeFactor = 1.0f * (cy - 100) / 100;
                                dstPixel[0] = merge(mergeFactor, srcPixel[0], dstPixel[0]);
                                dstPixel[1] = merge(mergeFactor, srcPixel[1], dstPixel[1]);
                                dstPixel[2] = merge(mergeFactor, srcPixel[2], dstPixel[2]);
                                dstOut.setPixel(x, y, dstPixel);
                        catch(Throwable t) {
                            System.out.println(t.getMessage() + " x=" + x + " y=" + y);
            protected int merge(float mergeFactor, int src, int dst) {
                return (int) (mergeFactor * src + (1.0f - mergeFactor) * dst);
            protected void dumpRaster(String lbl,
                                      Raster raster) {
                System.out.print(lbl + ":");
                System.out.print(" mx=" + format(raster.getMinX()));
                System.out.print(" my=" + format(raster.getMinY()));
                System.out.print(" rw=" + format(raster.getWidth()));
                System.out.print(" rh=" + format(raster.getHeight()));
                System.out.print(" tx=" + format(raster.getSampleModelTranslateX()));
                System.out.print(" ty=" + format(raster.getSampleModelTranslateY()));
                System.out.print(" sm=" + raster.getSampleModel().getClass().getName());
                System.out.println();
            protected String format(int value) {
                String txt = Integer.toString(value);
                while(txt.length() < 4)
                    txt = " " + txt;
                return txt;
            public void dispose() {
        public static void main(String[] args) {
            new TestCustomComposite2();
    }

  • Mac Mini display settings change after shutdown

    After a shutdown, my Mac Mini's display settings will change on startup. This happens about 80% to 90% of the time.
    Sometimes it may be due to playing a video game (Diablo 3) where the resolution in the game is slightly lower. The Mac Mini is set to 1080p, but in-game it is 1600x900. After playing a game, maybe half the time, when I go back to my desktop, the display looks different. However, even other times even when I wasn't playing a game, after a shutdown, the display settings will change.
    The strange thing is that it isn't a change in resolution. The resolution stays the same. It is always 1080p after every shutdown. But something in the display changes. Curved shaped look more pixelized, like some kind of smoothing or antialiasing has been turned off. And bright things are too bright, dark things too dark, so images lose some detail. It is also a bit painful on the eyes. Everything looks less vivid and very dull.
    Someone in an older post suggested changing refresh rates. Unfortunately, my Mac Mini doesn't show that option. It was also suggested to connect to a different monitor to possibly make the options appear. But I don't have another monitor.
    My current solution is to reset NVRAM (command+option+P+R) on startup. It seems to reset the display settings and fixes the display problem 100% of the time. But the thing is, I have to now keep doing this almost everytime I start up my Mac, which is annoying.
    Is there a way to ensure that the Mac Mini keeps my display settings and prevent it from losing them on startup? Or perhaps, a way to reset display settings from within the OS without having to shutdown again and reset NVRAM?

    hey p26grinz,
    without the external monitor and after setting the display, will the setting remain ?
    have you tried uninstalling the graphic driver from your unit and then testing it with generic driver ?
    WW Social Media
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    Have you checked out the Community Knowledgebase yet?!
    How to send a private message? --> Check out this article.

  • PDF display problem in 10.6.7

    Having problems displaying .pdf files after updating 10.6.7 with the recent font update.
    The issue occurs on both my MacPro and Macbook pro, which were updated recently.
    Opening most but not all .pdf files causes the viewer app to crash. This happens with preview, safari, papers and with the finder.
    Same files can be opened successfully with Adobe reader which suggests problems with underlying pdf rendering technology.
    Anybody else seeing this?
    Any solutions?

    Hi Linc
    Thanks again for the replies and for your time looking at this issue.
    Sorry about the bad file link. I think this one will work:
    http://dl.dropbox.com/u/2391464/p0950-p0982.pdf
    I have since tried this file on a Macbook running 10.5.8 and it crashes Preview and Finder on that machine too. So I was mistaken in thinking that the issue is recent.
    I also note that affected files all have a generic pdf icon.
    It opens fine in Adobe Reader  on the MacPro and in GoodReader on my iPad.
    If it was just this file, I would not worry but I have this problem with 100's of pdf's from on-line academic journals.
    Here is a complete crash report:
    Process:         Preview [10535]
    Path:            /Applications/Preview.app/Contents/MacOS/Preview
    Identifier:      com.apple.Preview
    Version:         5.0.3 (504.1)
    Build Info:      Preview-5040100~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [193]
    Date/Time:       2011-05-03 14:21:17.689 +0100
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          168776 sec
    Crashes Since Last Report:           135
    Per-App Interval Since Last Report:  148255 sec
    Per-App Crashes Since Last Report:   14
    Anonymous UUID:                      EE1A1ECF-B916-4F6B-A68C-EC51382FBA65
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000000000000c
    Crashed Thread:  5  Dispatch queue: com.apple.root.default-priority
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x00007fff814e35af __CFSetApplyFunction_block_invoke_1 + 15
    1   com.apple.CoreFoundation                0x00007fff814d7ae5 CFBasicHashApply + 213
    2   com.apple.CoreFoundation                0x00007fff814e356f CFSetApplyFunction + 191
    3   com.apple.CoreFoundation                0x00007fff814fa017 __CFRunLoopDoSources0 + 359
    4   com.apple.CoreFoundation                0x00007fff814f85f9 __CFRunLoopRun + 873
    5   com.apple.CoreFoundation                0x00007fff814f7dbf CFRunLoopRunSpecific + 575
    6   com.apple.imageKit                      0x00007fff80940087 -[IKTaskManager runAsynchronousTasksWithIdentifier:timeout:] + 91
    7   com.apple.imageKit                      0x00007fff809429c1 -[IKImageBrowserView(IKImageBrowserTasks) performSynchronousTasksIfAny] + 1454
    8   com.apple.imageKit                      0x00007fff8089dcdd -[IKImageBrowserView(ImageBrowserDrawing) drawWithCurrentRendererInRect:] + 247
    9   com.apple.imageKit                      0x00007fff8089e7ea -[IKImageBrowserView(ImageBrowserDrawing) drawRect:] + 732
    10  com.apple.AppKit                        0x00007fff81af1c49 -[NSView _drawRect:clip:] + 3390
    11  com.apple.AppKit                        0x00007fff81af08bc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1325
    12  com.apple.AppKit                        0x00007fff81af0c26 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    13  com.apple.AppKit                        0x00007fff81af0c26 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    14  com.apple.AppKit                        0x00007fff81af0c26 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    15  com.apple.AppKit                        0x00007fff81af0c26 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    16  com.apple.AppKit                        0x00007fff81af0c26 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    17  com.apple.AppKit                        0x00007fff81af0c26 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    18  com.apple.AppKit                        0x00007fff81af0c26 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    19  com.apple.AppKit                        0x00007fff81af0c26 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    20  com.apple.AppKit                        0x00007fff81aeef8e -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 767
    21  com.apple.AppKit                        0x00007fff81aeeab0 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 254
    22  com.apple.AppKit                        0x00007fff81aeb362 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    23  com.apple.AppKit                        0x00007fff81a64b9a -[NSView displayIfNeeded] + 969
    24  com.apple.AppKit                        0x00007fff81a2cbe3 -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1050
    25  com.apple.AppKit                        0x00007fff81a2c77a -[NSWindow orderWindow:relativeTo:] + 94
    26  com.apple.AppKit                        0x00007fff81a2a100 -[NSWindow makeKeyAndOrderFront:] + 46
    27  com.apple.AppKit                        0x00007fff81c2f335 -[NSWindowController showWindow:] + 599
    28  com.apple.Preview                       0x000000010000aa15 -[PVWindowController showWindow:] + 50
    29  com.apple.AppKit                        0x00007fff81c00b74 -[NSDocument showWindows] + 98
    30  com.apple.Preview                       0x0000000100007d86 -[PVDocumentController openNextFileFromScanner:] + 2371
    31  com.apple.Foundation                    0x00007fff868528ea _nsnote_callback + 167
    32  com.apple.CoreFoundation                0x00007fff81505000 __CFXNotificationPost + 1008
    33  com.apple.CoreFoundation                0x00007fff814f1578 _CFXNotificationPostNotification + 200
    34  com.apple.Foundation                    0x00007fff8687e4e4 postQueueNotifications + 398
    35  com.apple.CoreFoundation                0x00007fff8151cb37 __CFRunLoopDoObservers + 519
    36  com.apple.CoreFoundation                0x00007fff814f7ddf CFRunLoopRunSpecific + 607
    37  com.apple.HIToolbox                     0x00007fff863a87ee RunCurrentEventLoopInMode + 333
    38  com.apple.HIToolbox                     0x00007fff863a8551 ReceiveNextEventCommon + 148
    39  com.apple.HIToolbox                     0x00007fff863a84ac BlockUntilNextEventMatchingListInMode + 59
    40  com.apple.AppKit                        0x00007fff81a34e64 _DPSNextEvent + 718
    41  com.apple.AppKit                        0x00007fff81a347a9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    42  com.apple.AppKit                        0x00007fff819fa48b -[NSApplication run] + 395
    43  com.apple.AppKit                        0x00007fff819f31a8 NSApplicationMain + 364
    44  com.apple.Preview                       0x0000000100001454 start + 52
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff837f012a kevent + 10
    1   libSystem.B.dylib                       0x00007fff837f1ffd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff837f1cd4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff837f17fe _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff837f1128 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff837f0fc5 start_wqthread + 13
    Thread 2:  Dispatch queue: com.apple.root.default-priority
    0   libJBIG2.A.dylib                        0x00000001176a832b JArithmeticDecoder::decodeBit(unsigned int, JArithmeticDecoderStats*) + 55
    1   libJBIG2.A.dylib                        0x00000001176a753a JBIG2Stream::readGenericBitmap(int, int, int, int, int, int, JBIG2Bitmap*, int*, int*, int) + 6250
    2   libJBIG2.A.dylib                        0x00000001176a9411 JBIG2Stream::readSymbolDictSeg(unsigned int, unsigned int, unsigned int*, unsigned int) + 2823
    3   libJBIG2.A.dylib                        0x00000001176a5212 JBIG2Stream::readSegments() + 838
    4   libJBIG2.A.dylib                        0x00000001176a4dad JBIG2Stream::reset() + 151
    5   libJBIG2.A.dylib                        0x00000001176aeecb jb_state::get_stream() + 207
    6   libJBIG2.A.dylib                        0x00000001176aef18 read_bytes(void*, void*, unsigned long) + 22
    7   com.apple.CoreGraphics                  0x00007fff810a6e4c jbig2_filter_refill + 29
    8   com.apple.CoreGraphics                  0x00007fff80b52210 CGPDFSourceRefill + 235
    9   com.apple.CoreGraphics                  0x00007fff80b520e5 CGPDFSourceRead + 92
    10  com.apple.CoreGraphics                  0x00007fff80c1ce0a CGAccessSessionGetChunks + 459
    11  com.apple.CoreGraphics                  0x00007fff80b17be1 img_decode_read + 516
    12  com.apple.CoreGraphics                  0x00007fff80b20b34 img_interpolate_read + 864
    13  com.apple.CoreGraphics                  0x00007fff80afbd9b img_data_lock + 8693
    14  com.apple.CoreGraphics                  0x00007fff80af8eaf CGSImageDataLock + 212
    15  libRIP.A.dylib                          0x00007fff866be21f ripc_AcquireImage + 2431
    16  libRIP.A.dylib                          0x00007fff866bcaa3 ripc_DrawImage + 1218
    17  com.apple.CoreGraphics                  0x00007fff80b13cda CGContextDrawImage + 446
    18  com.apple.CoreGraphics                  0x00007fff80c9a060 CGPDFDrawingContextDrawImage + 223
    19  com.apple.CoreGraphics                  0x00007fff80c93b1d op_Do + 101
    20  com.apple.CoreGraphics                  0x00007fff80b5a536 pdf_scanner_handle_xname + 105
    21  com.apple.CoreGraphics                  0x00007fff80b598f7 CGPDFScannerScan + 472
    22  com.apple.CoreGraphics                  0x00007fff80b579ac CGPDFDrawingContextDrawPage + 787
    23  com.apple.CoreGraphics                  0x00007fff80b5764a CGContextDrawPDFPageWithProgressCallback + 100
    24  com.apple.PDFKit                        0x00007fff87f8715f -[PDFPage(PDFPagePrivate) drawWithBox:inContext:] + 629
    25  com.apple.PDFKit                        0x00007fff87f84db5 -[PDFPage(PDFPagePrivate) thumbnailOfSize:forBox:] + 673
    26  com.apple.imageKit                      0x00007fff80977feb -[IKImageCellDatasourceProxy _thumbnailWithRepresentation:type:uti:size:antialiased:quality:] + 1713
    27  com.apple.imageKit                      0x00007fff809766eb -[IKImageCellDatasourceProxy thumbnailWithSize:antialiased:quality:] + 177
    28  com.apple.imageKit                      0x00007fff8088726a -[IKImageWrapper _thumbnailWithSize:antialiased:quality:] + 577
    29  com.apple.imageKit                      0x00007fff8088537e -[IKImageWrapper thumbnailWithSize:antialiased:quality:] + 124
    30  com.apple.imageKit                      0x00007fff80970959 -[IKThumbnailBuilder computeThumbnail] + 319
    31  com.apple.imageKit                      0x00007fff809716f9 -[IKThumbnailOperation main] + 35
    32  com.apple.Foundation                    0x00007fff8687bcc4 -[__NSOperationInternal start] + 681
    33  com.apple.Foundation                    0x00007fff8695aae7 __doStart2 + 97
    34  libSystem.B.dylib                       0x00007fff83813284 _dispatch_call_block_and_release + 15
    35  libSystem.B.dylib                       0x00007fff837f17f1 _dispatch_worker_thread2 + 239
    36  libSystem.B.dylib                       0x00007fff837f1128 _pthread_wqthread + 353
    37  libSystem.B.dylib                       0x00007fff837f0fc5 start_wqthread + 13
    Thread 3:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                       0x00007fff83811f8a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83811e19 nanosleep + 148
    2   com.apple.Foundation                    0x00007fff8687c356 +[NSThread sleepUntilDate:] + 116
    3   com.apple.imageKit                      0x00007fff808a4d0a -[IKImageBrowserView(ImageBrowserImport) _importThumbnails:state:] + 1128
    4   com.apple.imageKit                      0x00007fff80940458 -[IKImageBrowserView(IKImageBrowserTasks) _performAsyncImportIfAny:delegate:] + 49
    5   com.apple.imageKit                      0x00007fff8093f4c5 -[IKTaskAsyncOperation main] + 67
    6   com.apple.Foundation                    0x00007fff8687bcc4 -[__NSOperationInternal start] + 681
    7   com.apple.Foundation                    0x00007fff8695aae7 __doStart2 + 97
    8   libSystem.B.dylib                       0x00007fff83813284 _dispatch_call_block_and_release + 15
    9   libSystem.B.dylib                       0x00007fff837f17f1 _dispatch_worker_thread2 + 239
    10  libSystem.B.dylib                       0x00007fff837f1128 _pthread_wqthread + 353
    11  libSystem.B.dylib                       0x00007fff837f0fc5 start_wqthread + 13
    Thread 4:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                       0x00007fffffe007db __memcpy + 59
    1   libJBIG2.A.dylib                        0x00000001176b0298 JBIG2Bitmap::JBIG2Bitmap(unsigned int, JBIG2Bitmap*) + 132
    2   libJBIG2.A.dylib                        0x00000001176a970c JBIG2Stream::readSymbolDictSeg(unsigned int, unsigned int, unsigned int*, unsigned int) + 3586
    3   libJBIG2.A.dylib                        0x00000001176a5212 JBIG2Stream::readSegments() + 838
    4   libJBIG2.A.dylib                        0x00000001176a4dad JBIG2Stream::reset() + 151
    5   libJBIG2.A.dylib                        0x00000001176aeecb jb_state::get_stream() + 207
    6   libJBIG2.A.dylib                        0x00000001176aef18 read_bytes(void*, void*, unsigned long) + 22
    7   com.apple.CoreGraphics                  0x00007fff810a6e4c jbig2_filter_refill + 29
    8   com.apple.CoreGraphics                  0x00007fff80b52210 CGPDFSourceRefill + 235
    9   com.apple.CoreGraphics                  0x00007fff80b520e5 CGPDFSourceRead + 92
    10  com.apple.CoreGraphics                  0x00007fff80c1ce0a CGAccessSessionGetChunks + 459
    11  com.apple.CoreGraphics                  0x00007fff80b17be1 img_decode_read + 516
    12  com.apple.CoreGraphics                  0x00007fff80b20b34 img_interpolate_read + 864
    13  com.apple.CoreGraphics                  0x00007fff80afbd9b img_data_lock + 8693
    14  com.apple.CoreGraphics                  0x00007fff80af8eaf CGSImageDataLock + 212
    15  libRIP.A.dylib                          0x00007fff866be21f ripc_AcquireImage + 2431
    16  libRIP.A.dylib                          0x00007fff866bcaa3 ripc_DrawImage + 1218
    17  com.apple.CoreGraphics                  0x00007fff80b13cda CGContextDrawImage + 446
    18  com.apple.CoreGraphics                  0x00007fff80c9a060 CGPDFDrawingContextDrawImage + 223
    19  com.apple.CoreGraphics                  0x00007fff80c93b1d op_Do + 101
    20  com.apple.CoreGraphics                  0x00007fff80b5a536 pdf_scanner_handle_xname + 105
    21  com.apple.CoreGraphics                  0x00007fff80b598f7 CGPDFScannerScan + 472
    22  com.apple.CoreGraphics                  0x00007fff80b579ac CGPDFDrawingContextDrawPage + 787
    23  com.apple.CoreGraphics                  0x00007fff80b5764a CGContextDrawPDFPageWithProgressCallback + 100
    24  com.apple.PDFKit                        0x00007fff87f8715f -[PDFPage(PDFPagePrivate) drawWithBox:inContext:] + 629
    25  com.apple.PDFKit                        0x00007fff87f84db5 -[PDFPage(PDFPagePrivate) thumbnailOfSize:forBox:] + 673
    26  com.apple.imageKit                      0x00007fff80977feb -[IKImageCellDatasourceProxy _thumbnailWithRepresentation:type:uti:size:antialiased:quality:] + 1713
    27  com.apple.imageKit                      0x00007fff809766eb -[IKImageCellDatasourceProxy thumbnailWithSize:antialiased:quality:] + 177
    28  com.apple.imageKit                      0x00007fff8088726a -[IKImageWrapper _thumbnailWithSize:antialiased:quality:] + 577
    29  com.apple.imageKit                      0x00007fff8088537e -[IKImageWrapper thumbnailWithSize:antialiased:quality:] + 124
    30  com.apple.imageKit                      0x00007fff80970959 -[IKThumbnailBuilder computeThumbnail] + 319
    31  com.apple.imageKit                      0x00007fff809716f9 -[IKThumbnailOperation main] + 35
    32  com.apple.Foundation                    0x00007fff8687bcc4 -[__NSOperationInternal start] + 681
    33  com.apple.Foundation                    0x00007fff8695aae7 __doStart2 + 97
    34  libSystem.B.dylib                       0x00007fff83813284 _dispatch_call_block_and_release + 15
    35  libSystem.B.dylib                       0x00007fff837f17f1 _dispatch_worker_thread2 + 239
    36  libSystem.B.dylib                       0x00007fff837f1128 _pthread_wqthread + 353
    37  libSystem.B.dylib                       0x00007fff837f0fc5 start_wqthread + 13
    Thread 5 Crashed:  Dispatch queue: com.apple.root.default-priority
    0   libJBIG2.A.dylib                        0x00000001176aa9ee JBIG2Stream::findSegment(unsigned int) + 8
    1   libJBIG2.A.dylib                        0x00000001176a8b13 JBIG2Stream::readSymbolDictSeg(unsigned int, unsigned int, unsigned int*, unsigned int) + 521
    2   libJBIG2.A.dylib                        0x00000001176a5212 JBIG2Stream::readSegments() + 838
    3   libJBIG2.A.dylib                        0x00000001176a4dad JBIG2Stream::reset() + 151
    4   libJBIG2.A.dylib                        0x00000001176aeecb jb_state::get_stream() + 207
    5   libJBIG2.A.dylib                        0x00000001176aef18 read_bytes(void*, void*, unsigned long) + 22
    6   com.apple.CoreGraphics                  0x00007fff810a6e4c jbig2_filter_refill + 29
    7   com.apple.CoreGraphics                  0x00007fff80b52210 CGPDFSourceRefill + 235
    8   com.apple.CoreGraphics                  0x00007fff80b520e5 CGPDFSourceRead + 92
    9   com.apple.CoreGraphics                  0x00007fff80c1ce0a CGAccessSessionGetChunks + 459
    10  com.apple.CoreGraphics                  0x00007fff80b17be1 img_decode_read + 516
    11  com.apple.CoreGraphics                  0x00007fff80b20b34 img_interpolate_read + 864
    12  com.apple.CoreGraphics                  0x00007fff80afbd9b img_data_lock + 8693
    13  com.apple.CoreGraphics                  0x00007fff80af8eaf CGSImageDataLock + 212
    14  libRIP.A.dylib                          0x00007fff866be21f ripc_AcquireImage + 2431
    15  libRIP.A.dylib                          0x00007fff866bcaa3 ripc_DrawImage + 1218
    16  com.apple.CoreGraphics                  0x00007fff80b13cda CGContextDrawImage + 446
    17  com.apple.CoreGraphics                  0x00007fff80c9a060 CGPDFDrawingContextDrawImage + 223
    18  com.apple.CoreGraphics                  0x00007fff80c93b1d op_Do + 101
    19  com.apple.CoreGraphics                  0x00007fff80b5a536 pdf_scanner_handle_xname + 105
    20  com.apple.CoreGraphics                  0x00007fff80b598f7 CGPDFScannerScan + 472
    21  com.apple.CoreGraphics                  0x00007fff80b579ac CGPDFDrawingContextDrawPage + 787
    22  com.apple.CoreGraphics                  0x00007fff80b5764a CGContextDrawPDFPageWithProgressCallback + 100
    23  com.apple.PDFKit                        0x00007fff87f8715f -[PDFPage(PDFPagePrivate) drawWithBox:inContext:] + 629
    24  com.apple.PDFKit                        0x00007fff87f84db5 -[PDFPage(PDFPagePrivate) thumbnailOfSize:forBox:] + 673
    25  com.apple.imageKit                      0x00007fff80977feb -[IKImageCellDatasourceProxy _thumbnailWithRepresentation:type:uti:size:antialiased:quality:] + 1713
    26  com.apple.imageKit                      0x00007fff809766eb -[IKImageCellDatasourceProxy thumbnailWithSize:antialiased:quality:] + 177
    27  com.apple.imageKit                      0x00007fff8088726a -[IKImageWrapper _thumbnailWithSize:antialiased:quality:] + 577
    28  com.apple.imageKit                      0x00007fff8088537e -[IKImageWrapper thumbnailWithSize:antialiased:quality:] + 124
    29  com.apple.imageKit                      0x00007fff80970959 -[IKThumbnailBuilder computeThumbnail] + 319
    30  com.apple.imageKit                      0x00007fff809716f9 -[IKThumbnailOperation main] + 35
    31  com.apple.Foundation                    0x00007fff8687bcc4 -[__NSOperationInternal start] + 681
    32  com.apple.Foundation                    0x00007fff8695aae7 __doStart2 + 97
    33  libSystem.B.dylib                       0x00007fff83813284 _dispatch_call_block_and_release + 15
    34  libSystem.B.dylib                       0x00007fff837f17f1 _dispatch_worker_thread2 + 239
    35  libSystem.B.dylib                       0x00007fff837f1128 _pthread_wqthread + 353
    36  libSystem.B.dylib                       0x00007fff837f0fc5 start_wqthread + 13
    Thread 6:  Dispatch queue: com.apple.root.default-priority
    0   libJBIG2.A.dylib                        0x00000001176a735f JBIG2Stream::readGenericBitmap(int, int, int, int, int, int, JBIG2Bitmap*, int*, int*, int) + 5775
    1   libJBIG2.A.dylib                        0x00000001176a9411 JBIG2Stream::readSymbolDictSeg(unsigned int, unsigned int, unsigned int*, unsigned int) + 2823
    2   libJBIG2.A.dylib                        0x00000001176a5212 JBIG2Stream::readSegments() + 838
    3   libJBIG2.A.dylib                        0x00000001176a4dad JBIG2Stream::reset() + 151
    4   libJBIG2.A.dylib                        0x00000001176aeecb jb_state::get_stream() + 207
    5   libJBIG2.A.dylib                        0x00000001176aef18 read_bytes(void*, void*, unsigned long) + 22
    6   com.apple.CoreGraphics                  0x00007fff810a6e4c jbig2_filter_refill + 29
    7   com.apple.CoreGraphics                  0x00007fff80b52210 CGPDFSourceRefill + 235
    8   com.apple.CoreGraphics                  0x00007fff80b520e5 CGPDFSourceRead + 92
    9   com.apple.CoreGraphics                  0x00007fff80c1ce0a CGAccessSessionGetChunks + 459
    10  com.apple.CoreGraphics                  0x00007fff80b17be1 img_decode_read + 516
    11  com.apple.CoreGraphics                  0x00007fff80b20b34 img_interpolate_read + 864
    12  com.apple.CoreGraphics                  0x00007fff80afbd9b img_data_lock + 8693
    13  com.apple.CoreGraphics                  0x00007fff80af8eaf CGSImageDataLock + 212
    14  libRIP.A.dylib                          0x00007fff866be21f ripc_AcquireImage + 2431
    15  libRIP.A.dylib                          0x00007fff866bcaa3 ripc_DrawImage + 1218
    16  com.apple.CoreGraphics                  0x00007fff80b13cda CGContextDrawImage + 446
    17  com.apple.CoreGraphics                  0x00007fff80c9a060 CGPDFDrawingContextDrawImage + 223
    18  com.apple.CoreGraphics                  0x00007fff80c93b1d op_Do + 101
    19  com.apple.CoreGraphics                  0x00007fff80b5a536 pdf_scanner_handle_xname + 105
    20  com.apple.CoreGraphics                  0x00007fff80b598f7 CGPDFScannerScan + 472
    21  com.apple.CoreGraphics                  0x00007fff80b579ac CGPDFDrawingContextDrawPage + 787
    22  com.apple.CoreGraphics                  0x00007fff80b5764a CGContextDrawPDFPageWithProgressCallback + 100
    23  com.apple.PDFKit                        0x00007fff87f8715f -[PDFPage(PDFPagePrivate) drawWithBox:inContext:] + 629
    24  com.apple.PDFKit                        0x00007fff87f84db5 -[PDFPage(PDFPagePrivate) thumbnailOfSize:forBox:] + 673
    25  com.apple.imageKit                      0x00007fff80977feb -[IKImageCellDatasourceProxy _thumbnailWithRepresentation:type:uti:size:antialiased:quality:] + 1713
    26  com.apple.imageKit                      0x00007fff809766eb -[IKImageCellDatasourceProxy thumbnailWithSize:antialiased:quality:] + 177
    27  com.apple.imageKit                      0x00007fff8088726a -[IKImageWrapper _thumbnailWithSize:antialiased:quality:] + 577
    28  com.apple.imageKit                      0x00007fff8088537e -[IKImageWrapper thumbnailWithSize:antialiased:quality:] + 124
    29  com.apple.imageKit                      0x00007fff80970959 -[IKThumbnailBuilder computeThumbnail] + 319
    30  com.apple.imageKit                      0x00007fff809716f9 -[IKThumbnailOperation main] + 35
    31  com.apple.Foundation                    0x00007fff8687bcc4 -[__NSOperationInternal start] + 681
    32  com.apple.Foundation                    0x00007fff8695aae7 __doStart2 + 97
    33  libSystem.B.dylib                       0x00007fff83813284 _dispatch_call_block_and_release + 15
    34  libSystem.B.dylib                       0x00007fff837f17f1 _dispatch_worker_thread2 + 239
    35  libSystem.B.dylib                       0x00007fff837f1128 _pthread_wqthread + 353
    36  libSystem.B.dylib                       0x00007fff837f0fc5 start_wqthread + 13
    Thread 5 crashed with X86 Thread State (64-bit):
      rax: 0x0000000102f40ff0  rbx: 0x0000000102f156f0  rcx: 0x0000000000000003  rdx: 0x00007fff707c8630
      rdi: 0x0000000102f1bfe0  rsi: 0x0000000000000000  rbp: 0x000000011767a970  rsp: 0x000000011767a970
       r8: 0x0000000102ffc0a0   r9: 0x0000000000000000  r10: 0x0000000000000003  r11: 0x00000000102f4100
      r12: 0x0000000102f1bfe0  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00000001176aa9ee  rfl: 0x0000000000010297  cr2: 0x000000000000000c
    Binary Images:
           0x100000000 -        0x100169ff7  com.apple.Preview 5.0.3 (504.1) <18721FE6-B8BA-6541-DEF6-9D366917376F> /Applications/Preview.app/Contents/MacOS/Preview
           0x1037c5000 -        0x1037ebfff  GLRendererFloat ??? (???) <0AF0FF0D-6FD6-B5FA-9991-C8F58E8F1DD4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x115646000 -        0x1157d7fef  GLEngine ??? (???) <7B2CD458-D828-6A44-C918-C194838974D5> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x115808000 -        0x115f8ffff  com.apple.GeForceGLDriver 1.6.26 (6.2.6) <D469864E-34A6-37EE-A01D-7C2AF0223D35> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
           0x116389000 -        0x1167acfef  libclh.dylib 3.1.1 C  (3.1.1) <0774DA8C-734E-2639-0F37-CCB20D17CDBD> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x1176a4000 -        0x1176b3fff  libJBIG2.A.dylib 545.0.0 (compatibility 64.0.0) <D1F33544-AF41-7D19-6D6B-241D053DE92E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libJBIG2.A.dylib
           0x200000000 -        0x200517fef  com.apple.GeForce7xxxGLDriver 1.6.26 (6.2.6) <067B2F67-F443-521E-05AD-69831554D5F0> /System/Library/Extensions/GeForce7xxxGLDriver.bundle/Contents/MacOS/GeForce7xx xGLDriver
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80024000 -     0x7fff8012eff7  com.apple.MeshKitIO 1.1 (49.2) <F296E151-80AE-7764-B969-C2050DF26BFE> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff8012f000 -     0x7fff80145fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff80178000 -     0x7fff80179ff7  com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <BE4E577D-87EC-8FD0-5341-AE99CE4ADC99> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8017a000 -     0x7fff801b7ff7  libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff801b8000 -     0x7fff801f1ff7  com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff8021c000 -     0x7fff802ccfff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff802cd000 -     0x7fff802cdff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff802ce000 -     0x7fff80510fe7  com.apple.AddressBook.framework 5.0.4 (883) <3C634319-4B5B-592B-2D3A-A16336F93AA0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff80511000 -     0x7fff80511ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff805ec000 -     0x7fff805ecff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff805ed000 -     0x7fff80612ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff80613000 -     0x7fff80675fe7  com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff80676000 -     0x7fff80733fff  com.apple.CoreServices.OSServices 359 (359) <8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff80734000 -     0x7fff8077bff7  com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8077c000 -     0x7fff80787ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff80788000 -     0x7fff8078eff7  IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff80810000 -     0x7fff8087cff7  com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8087d000 -     0x7fff80ab8fef  com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff80ab9000 -     0x7fff811b606f  com.apple.CoreGraphics 1.545.0 (???) <F0A5F62D-4C66-5B1F-4F13-322932915901> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff811ed000 -     0x7fff81203fe7  com.apple.MultitouchSupport.framework 207.10 (207.10) <1828C264-A54A-7FDD-FE1B-49DDE3F50779> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff81204000 -     0x7fff81206fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff81207000 -     0x7fff81278ff7  com.apple.AppleVAFramework 4.10.23 (4.10.23) <3304268B-A93D-9F79-09C0-AA9081406352> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff81279000 -     0x7fff812bafef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff812bb000 -     0x7fff814abfef  com.apple.JavaScriptCore 6533.20 (6533.20.20) <0AA8B101-C02C-0858-84BC-4E4D397E0231> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff814ac000 -     0x7fff81623fe7  com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff81722000 -     0x7fff8172ffe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <45B5B514-7CEB-38A9-F34A-1D96F010EC42> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff817e5000 -     0x7fff818fcfef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff81904000 -     0x7fff8194bfff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8194c000 -     0x7fff8198dfff  com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff819ef000 -     0x7fff819f0fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff819f1000 -     0x7fff823e7fff  com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff823e8000 -     0x7fff82478fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff82479000 -     0x7fff8248afff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff8248b000 -     0x7fff8298ffe7  com.apple.VideoToolbox 0.484.20 (484.20) <8B6B82D2-350B-E9D3-5433-51453CDA65B4> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff82a64000 -     0x7fff82a67fff  com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff82a68000 -     0x7fff82bd7fe7  com.apple.QTKit 7.6.6 (1756.15) <B35EDB1D-FCB0-1D40-629E-6ACB56D57C68> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff82bd8000 -     0x7fff82c8dfe7  com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff82c8e000 -     0x7fff82ef8fef  com.apple.QuartzComposer 4.2 ({156.28}) <7586E7BD-D3BD-0EAC-5AC9-0BFA3679017C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff82ef9000 -     0x7fff82efafff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff83152000 -     0x7fff83164fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff8316d000 -     0x7fff834a1fff  com.apple.CoreServices.CarbonCore 861.34 (861.34) <B5680539-CB31-6C6D-C0AD-606D4D46E7F5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff834a2000 -     0x7fff83564fef  libFontParser.dylib ??? (???) <363E2A8A-CEFE-9A74-E677-C240B27A4FC6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8356b000 -     0x7fff8357cff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff8357d000 -     0x7fff83591fff  libGL.dylib ??? (???) <0FA671EB-6FA0-BA97-C00A-C42247C22B26> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff836ee000 -     0x7fff836eeff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff836ef000 -     0x7fff837d5fef  com.apple.DesktopServices 1.5.10 (1.5.10) <B7E00D85-F971-D85B-0217-482E15E9E924> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff837d6000 -     0x7fff83997fff  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
        0x7fff83998000 -     0x7fff83acdff7  com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <AFAB42A2-A3A8-83D8-D583-613625706690> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff83ada000 -     0x7fff83b44fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff83b45000 -     0x7fff83b45ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff83b46000 -     0x7fff83c18fe7  com.apple.CFNetwork 454.11.12 (454.11.12) <B1C9008A-4A5D-609D-5D10-C93DAD6FFB4C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff83ccc000 -     0x7fff83d07fff  com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff83d08000 -     0x7fff83d4dfff  com.apple.CoreMediaIOServices 134.0 (1160) <BA22EA4A-4572-749A-4FE0-1323E0B6F6F3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff83d4e000 -     0x7fff83d69ff7  com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff83d6a000 -     0x7fff83d87ff7  libPng.dylib ??? (???) <0C232C1E-49C8-F7A9-9634-DF2BDA1AB722> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff83dca000 -     0x7fff83e4cfff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff83e7d000 -     0x7fff83eaefff  libGLImage.dylib ??? (???) <6925991A-9B1B-B9FA-645A-807F9BCC3DE7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff83eaf000 -     0x7fff83efeff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff83eff000 -     0x7fff83f4efef  libTIFF.dylib ??? (???) <F0F7F0B7-7253-F88F-9E2D-FA3770143758> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff83f4f000 -     0x7fff84759fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8475a000 -     0x7fff84af7fe7  com.apple.QuartzCore 1.6.3 (227.36) <6FD8E129-135E-2F89-E9F0-A3CD0C6FCEF1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff84af8000 -     0x7fff84b35fff  com.apple.LDAPFramework 2.0 (120.1) <16383FF5-0537-6298-73C9-473AEC9C149C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff84bec000 -     0x7fff84c41ff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff84c42000 -     0x7fff84cfbfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff84d40000 -     0x7fff84d4ffff  com.apple.opengl 1.6.12 (1.6.12) <29482652-1E44-1C47-428F-1209AA65336D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff84d50000 -     0x7fff84deaff7  com.apple.ApplicationServices.ATS 275.15.1 (???) <55B528A6-0C88-6CB8-152B-A34A440FACFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff84e26000 -     0x7fff84e6eff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff84e6f000 -     0x7fff84ed7fff  com.apple.MeshKitRuntime 1.1 (49.2) <1F4C9AB5-9D3F-F91D-DB91-B78610562ECC> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff84ed8000 -     0x7fff84f07ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff84f1e000 -     0x7fff84f41fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff84f42000 -     0x7fff84fc1fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <1DD64A62-0DE4-223F-F781-B272FECF80F0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff85016000 -     0x7fff8501fff7  com.apple.DisplayServicesFW 2.3.0 (283) <3D05929C-AB17-B8A4-DC81-87C27C59E664> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff85020000 -     0x7fff85025fff  libGFXShared.dylib ??? (???) <878C429B-44D4-875C-1A35-4FD8C6152695> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff85026000 -     0x7fff85147fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff851fe000 -     0x7fff852bffef  com.apple.ColorSync 4.6.6 (4.6.6) <EC6C8119-23F6-A96E-47A3-5CD31E462AE3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff852c0000 -     0x7fff85703fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff85a48000 -     0x7fff85a70fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff85a71000 -     0x7fff85cf9fef  com.apple.security 6.1.2 (55002) <015C9A08-3D07-9462-8E91-DB1924349621> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff85d12000 -     0x7fff85d5bfef  libGLU.dylib ??? (???) <0FCD57C5-D7AA-F2DD-D2EC-C1C8B931F65C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff85fab000 -     0x7fff85fcbff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff85fcc000 -     0x7fff85fd7fff  com.apple.CrashReporterSupport 10.6.7 (258) <BB0B9A08-6CEC-0500-5BD1-C18E1465E406> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff85fd8000 -     0x7fff86012fff  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C7153747-50E3-32DA-426F-CC4C505D1D6C> /usr/lib/libssl.0.9.8.dylib
        0x7fff86013000 -     0x7fff86019ff7  com.apple.CommerceCore 1.0 (9) <4C66D962-91B5-F25C-A6FF-DFD5F924A0DD> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8601a000 -     0x7fff861d2fef  com.apple.ImageIO.framework 3.0.4 (3.0.4) <EFB373AE-FE02-40C4-ABDC-09D61AFD25EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff861d3000 -     0x7fff862ecfef  libGLProgrammability.dylib ??? (???) <C4BB281B-629D-08ED-2991-3D51671B0B02> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff8637a000 -     0x7fff86678fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8668d000 -     0x7fff8668dff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff866b1000 -     0x7fff866f4ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <2C596A24-8B86-79D6-1A8E-5E8FFB6A1558> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff866f5000 -     0x7fff8672efef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <F8E0672F-C0B4-B161-E50D-A1405D14F21C> /usr/lib/libcups.2.dylib
        0x7fff8672f000 -     0x7fff86736fff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff86830000 -     0x7fff86832fff  libRadiance.dylib ??? (???) <73257486-8E94-E758-1A5A-5B521F27EE12> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff86842000 -     0x7fff86ac5fe7  com.apple.Foundation 6.6.6 (751.53) <476E617B-B59B-53DE-991D-98C1993BCBCE> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff86b15000 -     0x7fff86b9aff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff86b9b000 -     0x7fff86c51fff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
        0x7fff86c52000 -     0x7fff86c60ff7  libkxld.dylib ??? (???) <4016E9E6-0645-5384-A697-2775B5228113> /usr/lib/system/libkxld.dylib
        0x7fff86c61000 -     0x7fff86ca5fe7  com.apple.ImageCaptureCore 1.0.4 (1.0.4) <F4ED3329-1A86-EB10-CFC2-999D8699B5E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff86d2a000 -     0x7fff86d40fff  com.apple.ImageCapture 6.0.2 (6.0.2) <06E4103B-9BE4-7EAD-B532-89FC5EB06ED4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff86d41000 -     0x7fff86d93ff7  com.apple.HIServices 1.8.2 (???) <7C91D07D-FA20-0882-632F-0CAE4FAC2B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff86d94000 -     0x7fff86d94ff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff86d95000 -     0x7fff86df5fe7  com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff86e12000 -     0x7fff86e18ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff86e19000 -     0x7fff86e96fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff86e97000 -     0x7fff86e9bff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <49E6AF5D-AF9B-67CF-A6B8-C79F6BA8A627> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff87b95000 -     0x7fff87ba9ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff87baa000 -     0x7fff87bb9fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff87bba000 -     0x7fff87bbbff7  com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff87bbc000 -     0x7fff87d7afff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2C6ECACF-CD56-1714-6F63-CB6F5EE7A1E2> /usr/lib/libicucore.A.dylib
        0x7fff87d7b000 -     0x7fff87d94fff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff87f14000 -     0x7fff87f5dff7  com.apple.securityinterface 4.0.1 (40418) <E2DC796D-84EC-48F5-34A9-DF614573BE74> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff87f5e000 -     0x7fff87f61ff7  libCoreVMClient.dylib ??? (???) <00C97B96-8D3B-45EB-F503-DB49712DC42D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff87f62000 -     0x7fff87ff1fff  com.apple.PDFKit 2.5.1 (2.5.1) <7B8A187A-F0BB-44E7-FBD4-9E1C5F9D5E85> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff87ff2000 -     0x7fff87ff6ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff87ff7000 -     0x7fff88074fef  com.apple.backup.framework 1.2.2 (1.2.2) <13A0D34C-28B7-2140-ECC9-B08D10CD4AB5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff88075000 -     0x7fff880b6ff7  com.apple.CoreMedia 0.484.20 (484.20) <42F3B74A-F886-33A0-40EE-8399B12BD32A> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff880c0000 -     0x7fff8819dfff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8819e000 -     0x7fff881c4fe7  libJPEG.dylib ??? (???) <AD42F658-7C32-EEE5-8341-A8EE6476BF46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff881c5000 -     0x7fff881c8ff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff881c9000 -     0x7fff881cefff  libGIF.dylib ??? (???) <1B9DCB7F-CD1D-B23F-8AC6-5292B94A4D0E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff883d2000 -     0x7fff8841efff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff88591000 -     0x7fff885c4fff  libTrueTypeScaler.dylib ??? (???) <6EFBF3B7-E4D5-E6AE-5A7D-22F37E288737> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff885de000 -     0x7fff88609ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff88616000 -     0x7fff886b6fff  com.apple.LaunchServices 362.2 (362.2) <A8EDC37C-1D40-5ED0-49BE-90EF110A6B3A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff886b7000 -     0x7fff887f5fff  com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8896a000 -     0x7fff88a92ff7  com.apple.MediaToolbox 0.484.20 (484.20) <628A7245-7ADE-AD47-3368-CF8EDCA6CC1C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff88a93000 -     0x7fff88b1ffef  SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff88b20000 -     0x7fff88b6aff7  com.apple.Metadata 10.6.3 (507.15) <5170FCE0-ED6C-2E3E-AB28-1DDE3F628FC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff88b6b000 -     0x7fff88b80ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff88b81000 -     0x7fff88b81ff7  com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff88b90000 -     0x7fff88bb1fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
        0x7fff88d76000 -     0x7fff88df4ff7  com.apple.CoreText 3.151.8 (???) <5DCD6BD9-63FB-767E-5993-5AEBE890145B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff88df5000 -     0x7fff88dfaff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff88dfb000 -     0x7fff89226fef  com.apple.RawCamera.bundle 3.6.4 (561) <C4AB0054-B2C8-246E-0F17-98F4BD5BE94C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 2.66 GHz, 12 GB, SMC 1.7f10
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 0 MB
    Graphics: NVIDIA GeForce 8800 GT, NVIDIA GeForce 8800 GT, PCIe, 512 MB
    Memory Module: global_name
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet 1, Ethernet, en0
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-4
    PCI Card: NVIDIA GeForce 8800 GT, Display, Slot-1
    Serial ATA Device: SAMSUNG HD103UJ, 931.51 GB
    Serial ATA Device: SAMSUNG HD103SI, 931.51 GB
    Serial ATA Device: WDC WD5000AAKS-00TMA0, 465.76 GB
    Serial ATA Device: WDC WD5000AAKS-00YGA0, 465.76 GB
    Parallel ATA Device: SONY    DVD RW DW-D150A
    USB Device: Hub, 0x0424  (SMSC), 0x2504, 0xfd3000

  • Display font in Safari like it is in IE

    Hi. I'm a new mac user. I'm wondering if there's any way to have websites display like you would see them in Internet Explorer or Netscape on a PC in regards to font. I've used macs before and never noticed that pages don't look like I'm use to i.e. the font looks to be a different font than what the page would normally use. Say for example when I go to hotmail or myspace. The pages just look off to me. They are readable and not neccesarily too small or anything but they don't look like what I consider to be "normal" font for that site. Thanks!
      Mac OS X (10.4.8)  

    Another thing to be aware of: text antialiasing is different in the Mac OS than in Windows. The difference bothers some people when they switch from Windows to the Mac OS. The Mac OS "smoothes" text much more than Windows.
    You can change this behavior somewhat in System Preferences, Appearance, in the the "Font Smoothing" settings. Adjusting the setting labeled "Turn off font smoothing for text sizes _ and smaller" might make things a little closer to what you're used to. However, you'll never get exactly the same text display on a Mac as you do on a PC, so to some extent it really is something you just have to get used to.

  • [SOLVED] Display manager

    I am new to Arch. I have installed Arch, X, Mate (as the DE) and Lightdm as the display manager.  Lightdm will only start in X, with the sudo lightdm command. From there, you can get into Mate.
    Mate seems to work just fine. However, it would be nice to be able to boot successfully to a display manager and then into a desktop environment.
    Before Lightdm, I had installed gdm with xfce. Gdm starts up properly but will not properly start either xfce or Mate. Gdm goes to a screen that is akin to the login screen but with nothing else. I just tried slim, which will not start up, either on boot up or from x.
    I am not sure what to post for logs on this. In any event, my computer is an old Dell Dimension 2400, with a pentium 4 processor, intel graphics and 2 gb of memory. I am not sure what log would be helpful here but, if someone could help me with my issue, it would be appreciated.
    My x-0-greeter.log reads:
    ** (process:290): WARNING **: Failed to open CK session: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.ConsoleKit was not provided by any .service files
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_shell_parse_argv: assertion `command_line != NULL' failed
    ** (lightdm-gtk-greeter:331): WARNING **: Failed to open sessions directory: Error opening directory '/usr/share/lightdm/remote-sessions': No such file or directory
    ** (lightdm-gtk-greeter:331): WARNING **: Failed to load user image: Failed to open file '/home/allen/.face': Permission denied
    ** (lightdm-gtk-greeter:331): WARNING **: Could not get accounts property XKeyboardLayouts
    ** (lightdm-gtk-greeter:331): WARNING **: Could not get accounts property XHasMessages
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_get_type: assertion `value != NULL' failed
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_type_is_subtype_of: assertion `g_variant_type_check (type)' failed
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_get_type_string: assertion `value != NULL' failed
    ** (lightdm-gtk-greeter:331): WARNING **: Unexpected accounts property type for XHasMessages: (null)
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_unref: assertion `value != NULL' failed
    ** (lightdm-gtk-greeter:331): WARNING **: Could not get accounts property XKeyboardLayouts
    ** (lightdm-gtk-greeter:331): WARNING **: Could not get accounts property XHasMessages
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_get_type: assertion `value != NULL' failed
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_type_is_subtype_of: assertion `g_variant_type_check (type)' failed
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_get_type_string: assertion `value != NULL' failed
    ** (lightdm-gtk-greeter:331): WARNING **: Unexpected accounts property type for XHasMessages: (null)
    (lightdm-gtk-greeter:331): GLib-CRITICAL **: g_variant_unref: assertion `value != NULL' failed
    That seems to include some errors. The x-0.log reads:
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.9.7-1-ARCH i686
    Current Operating System: Linux archbox 3.9.9-1-ARCH #1 SMP PREEMPT Wed Jul 3 22:52:05 CEST 2013 i686
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=5eec6b5e-dd19-4f9d-8e3b-39b950052c48 ro quiet
    Build Date: 01 July 2013 10:52:25AM
    Current version of pixman: 0.30.0
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jul 24 22:13:55 2013
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    (II) AIGLX: Suspending AIGLX clients for VT switch
    setversion 1.4 failed
    The lightdm.log reads:
    [+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log
    [+0.00s] DEBUG: Starting Light Display Manager 1.6.0, UID=0 PID=532
    [+0.00s] DEBUG: Loaded configuration from /etc/lightdm/lightdm.conf
    [+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager
    [+0.00s] DEBUG: Using Xephyr for X servers
    [+0.00s] DEBUG: Registered seat module xlocal
    [+0.00s] DEBUG: Registered seat module xremote
    [+0.00s] DEBUG: Adding default seat
    [+0.00s] DEBUG: Starting seat
    [+0.00s] DEBUG: Starting new display for greeter
    [+0.00s] DEBUG: Starting local X display
    [+0.02s] DEBUG: Could not run plymouth --ping: Failed to execute child process "plymouth" (No such file or directory)
    [+0.02s] DEBUG: Using VT 7
    [+0.02s] DEBUG: Activating VT 7
    [+0.03s] DEBUG: Logging to /var/log/lightdm/x-2.log
    [+0.03s] DEBUG: Writing X server authority to /run/lightdm/root/:2
    [+0.03s] DEBUG: Launching X Server
    [+0.03s] DEBUG: Launching process 536: /usr/bin/Xephyr :2 -auth /run/lightdm/root/:2 -nolisten tcp vt7 -novtswitch
    [+0.06s] DEBUG: Waiting for ready signal from X server :2
    [+0.06s] DEBUG: Acquired bus name org.freedesktop.DisplayManager
    [+0.06s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0
    The log from slim reads:
    slim: waiting for X server to begin accepting connections.
    slim: pam_authentication(): Authentication failure
    slim: waiting for X server to shut down
    slim: waiting for X server to begin accepting connections.
    The xorg.0.log reads:
    [ 6.928]
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    [ 6.928] X Protocol Version 11, Revision 0
    [ 6.928] Build Operating System: Linux 3.9.7-1-ARCH i686
    [ 6.928] Current Operating System: Linux archbox 3.9.9-1-ARCH #1 SMP PREEMPT Wed Jul 3 22:52:05 CEST 2013 i686
    [ 6.929] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=5eec6b5e-dd19-4f9d-8e3b-39b950052c48 ro quiet
    [ 6.929] Build Date: 01 July 2013 10:52:25AM
    [ 6.929]
    [ 6.929] Current version of pixman: 0.30.0
    [ 6.929] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 6.929] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 6.929] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jul 24 22:13:55 2013
    [ 6.958] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 6.978] (==) No Layout section. Using the first Screen section.
    [ 6.978] (==) No screen section available. Using defaults.
    [ 6.978] (**) |-->Screen "Default Screen Section" (0)
    [ 6.978] (**) | |-->Monitor "<default monitor>"
    [ 6.985] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 6.985] (==) Automatically adding devices
    [ 6.985] (==) Automatically enabling devices
    [ 6.985] (==) Automatically adding GPU devices
    [ 7.000] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 7.000] Entry deleted from font path.
    [ 7.000] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 7.000] Entry deleted from font path.
    [ 7.000] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 7.000] Entry deleted from font path.
    [ 7.000] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 7.000] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 7.000] Entry deleted from font path.
    [ 7.000] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 7.000] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 7.000] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 7.000] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 7.005] (II) Loader magic: 0x8258620
    [ 7.005] (II) Module ABI versions:
    [ 7.005] X.Org ANSI C Emulation: 0.4
    [ 7.005] X.Org Video Driver: 14.1
    [ 7.005] X.Org XInput driver : 19.1
    [ 7.005] X.Org Server Extension : 7.0
    [ 7.006] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 7.007] (--) PCI:*(0:0:2:0) 8086:2562:1028:0160 rev 1, Mem @ 0xe8000000/134217728, 0xfeb80000/524288
    [ 7.008] Initializing built-in extension Generic Event Extension
    [ 7.008] Initializing built-in extension SHAPE
    [ 7.008] Initializing built-in extension MIT-SHM
    [ 7.008] Initializing built-in extension XInputExtension
    [ 7.008] Initializing built-in extension XTEST
    [ 7.008] Initializing built-in extension BIG-REQUESTS
    [ 7.008] Initializing built-in extension SYNC
    [ 7.008] Initializing built-in extension XKEYBOARD
    [ 7.008] Initializing built-in extension XC-MISC
    [ 7.008] Initializing built-in extension SECURITY
    [ 7.008] Initializing built-in extension XINERAMA
    [ 7.008] Initializing built-in extension XFIXES
    [ 7.008] Initializing built-in extension RENDER
    [ 7.008] Initializing built-in extension RANDR
    [ 7.008] Initializing built-in extension COMPOSITE
    [ 7.008] Initializing built-in extension DAMAGE
    [ 7.008] Initializing built-in extension MIT-SCREEN-SAVER
    [ 7.008] Initializing built-in extension DOUBLE-BUFFER
    [ 7.008] Initializing built-in extension RECORD
    [ 7.008] Initializing built-in extension DPMS
    [ 7.008] Initializing built-in extension X-Resource
    [ 7.008] Initializing built-in extension XVideo
    [ 7.008] Initializing built-in extension XVideo-MotionCompensation
    [ 7.008] Initializing built-in extension XFree86-VidModeExtension
    [ 7.008] Initializing built-in extension XFree86-DGA
    [ 7.008] Initializing built-in extension XFree86-DRI
    [ 7.008] Initializing built-in extension DRI2
    [ 7.008] (II) LoadModule: "glx"
    [ 7.027] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 7.042] (II) Module glx: vendor="X.Org Foundation"
    [ 7.042] compiled for 1.14.2, module version = 1.0.0
    [ 7.042] ABI class: X.Org Server Extension, version 7.0
    [ 7.042] (==) AIGLX enabled
    [ 7.042] Loading extension GLX
    [ 7.042] (==) Matched intel as autoconfigured driver 0
    [ 7.042] (==) Matched intel as autoconfigured driver 1
    [ 7.042] (==) Matched vesa as autoconfigured driver 2
    [ 7.042] (==) Matched modesetting as autoconfigured driver 3
    [ 7.043] (==) Matched fbdev as autoconfigured driver 4
    [ 7.043] (==) Assigned the driver to the xf86ConfigLayout
    [ 7.043] (II) LoadModule: "intel"
    [ 7.044] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 7.098] (II) Module intel: vendor="X.Org Foundation"
    [ 7.098] compiled for 1.14.2, module version = 2.21.12
    [ 7.098] Module class: X.Org Video Driver
    [ 7.098] ABI class: X.Org Video Driver, version 14.1
    [ 7.098] (II) LoadModule: "vesa"
    [ 7.098] (WW) Warning, couldn't open module vesa
    [ 7.098] (II) UnloadModule: "vesa"
    [ 7.098] (II) Unloading vesa
    [ 7.098] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 7.098] (II) LoadModule: "modesetting"
    [ 7.099] (WW) Warning, couldn't open module modesetting
    [ 7.099] (II) UnloadModule: "modesetting"
    [ 7.099] (II) Unloading modesetting
    [ 7.099] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 7.099] (II) LoadModule: "fbdev"
    [ 7.099] (WW) Warning, couldn't open module fbdev
    [ 7.099] (II) UnloadModule: "fbdev"
    [ 7.099] (II) Unloading fbdev
    [ 7.099] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 7.099] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
    Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
    Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
    Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
    Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
    Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
    Ivybridge Server (GT2), HD Graphics, HD Graphics 4600,
    Haswell Desktop (GT3), HD Graphics, HD Graphics 4600,
    Haswell Mobile (GT3), HD Graphics, HD Graphics P4600/P4700,
    Haswell Server (GT3), Haswell (GT1), Haswell (GT2), Haswell (GT3),
    HD Graphics, Haswell (GT2), Haswell (GT3), Haswell SDV Desktop (GT1),
    Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT3),
    Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
    Haswell SDV Mobile (GT3), Haswell SDV Server (GT1),
    Haswell SDV Server (GT2), Haswell SDV Server (GT3),
    Haswell SDV (GT1), Haswell SDV (GT2), Haswell SDV (GT3),
    Haswell SDV (GT1), Haswell SDV (GT2), Haswell SDV (GT3),
    Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
    Iris(TM) Graphics 5100, HD Graphics, HD Graphics 4400,
    HD Graphics 5000, Haswell ULT Server (GT1), Haswell ULT Server (GT2),
    Iris(TM) Graphics 5100, Haswell ULT (GT1), Haswell ULT (GT2),
    Iris(TM) Graphics 5100, HD Graphics, HD Graphics 4200,
    Iris(TM) Graphics 5100, Haswell CRW Desktop (GT1), HD Graphics 4600,
    Iris(TM) Pro Graphics 5200, Haswell CRW Mobile (GT1),
    HD Graphics 4600, Iris(TM) Pro Graphics 5200,
    Haswell CRW Server (GT1), Haswell CRW Server (GT2),
    Iris(TM) Pro Graphics 5200, Haswell CRW (GT1), Haswell CRW (GT2),
    Iris(TM) Pro Graphics 5200, Haswell CRW (GT1), Haswell CRW (GT2),
    Iris(TM) Pro Graphics 5200, ValleyView PO board
    [ 7.101] (++) using VT number 7
    [ 7.101] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 7.101] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 7.101] (==) intel(0): RGB weight 888
    [ 7.101] (==) intel(0): Default visual is TrueColor
    [ 7.101] (--) intel(0): Integrated Graphics Chipset: Intel(R) 845G
    [ 7.101] (**) intel(0): Relaxed fencing disabled
    [ 7.102] (**) intel(0): Wait on SwapBuffers? enabled
    [ 7.102] (**) intel(0): Triple buffering? enabled
    [ 7.102] (**) intel(0): Framebuffer tiled
    [ 7.102] (**) intel(0): Pixmaps tiled
    [ 7.102] (**) intel(0): 3D buffers tiled
    [ 7.102] (**) intel(0): SwapBuffers wait enabled
    [ 7.103] (==) intel(0): video overlay key set to 0x101fe
    [ 7.303] (II) intel(0): Output VGA1 has no monitor section
    [ 7.443] (II) intel(0): EDID for output VGA1
    [ 7.443] (II) intel(0): Manufacturer: DEL Model: 3142 Serial#: 894121267
    [ 7.443] (II) intel(0): Year: 1999 Week: 29
    [ 7.443] (II) intel(0): EDID Version: 1.2
    [ 7.443] (II) intel(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 7.443] (II) intel(0): Sync: Separate
    [ 7.443] (II) intel(0): Max Image Size [cm]: horiz.: 32 vert.: 24
    [ 7.443] (II) intel(0): Gamma: 2.27
    [ 7.443] (II) intel(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 7.443] (II) intel(0): First detailed timing is preferred mode
    [ 7.443] (II) intel(0): redX: 0.645 redY: 0.321 greenX: 0.285 greenY: 0.600
    [ 7.443] (II) intel(0): blueX: 0.142 blueY: 0.057 whiteX: 0.283 whiteY: 0.298
    [ 7.443] (II) intel(0): Supported established timings:
    [ 7.443] (II) intel(0): 720x400@70Hz
    [ 7.443] (II) intel(0): 640x480@60Hz
    [ 7.443] (II) intel(0): 640x480@75Hz
    [ 7.443] (II) intel(0): 800x600@60Hz
    [ 7.443] (II) intel(0): 800x600@75Hz
    [ 7.443] (II) intel(0): 1024x768@60Hz
    [ 7.443] (II) intel(0): 1024x768@75Hz
    [ 7.443] (II) intel(0): 1280x1024@75Hz
    [ 7.443] (II) intel(0): Manufacturer's mask: 0
    [ 7.443] (II) intel(0): Supported standard timings:
    [ 7.443] (II) intel(0): #0: hsize: 1024 vsize 768 refresh: 85 vid: 22881
    [ 7.443] (II) intel(0): #1: hsize: 800 vsize 600 refresh: 85 vid: 22853
    [ 7.443] (II) intel(0): #2: hsize: 640 vsize 480 refresh: 85 vid: 22833
    [ 7.443] (II) intel(0): Supported detailed timing:
    [ 7.443] (II) intel(0): clock: 94.5 MHz Image Size: 306 x 230 mm
    [ 7.444] (II) intel(0): h_active: 1024 h_sync: 1072 h_sync_end 1168 h_blank_end 1376 h_border: 0
    [ 7.444] (II) intel(0): v_active: 768 v_sync: 769 v_sync_end 772 v_blanking: 808 v_border: 0
    [ 7.444] (II) intel(0): Serial No: 5322DE5K5379
    [ 7.444] (II) intel(0): Monitor name: DELL M780
    [ 7.444] (II) intel(0): Ranges: V min: 50 V max: 160 Hz, H min: 30 H max: 85 kHz,
    [ 7.444] (II) intel(0): EDID (in hex):
    [ 7.444] (II) intel(0): 00ffffffffffff0010ac423133354b35
    [ 7.444] (II) intel(0): 1d0901020820187fea1269a552499924
    [ 7.444] (II) intel(0): 0e484ca54b0061594559315901010101
    [ 7.444] (II) intel(0): 010101010101ea240060410028303060
    [ 7.444] (II) intel(0): 130032e61000001e000000ff00353332
    [ 7.444] (II) intel(0): 324445354b353337390a000000fc0044
    [ 7.444] (II) intel(0): 454c4c204d3738300a202020000000fd
    [ 7.444] (II) intel(0): 0032a01e55ff000a20202020202000e3
    [ 7.444] (II) intel(0): Printing probed modes for output VGA1
    [ 7.444] (II) intel(0): Modeline "1024x768"x85.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 7.444] (II) intel(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 7.444] (II) intel(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 7.444] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 7.444] (II) intel(0): Modeline "800x600"x85.1 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 7.444] (II) intel(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 7.444] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 7.444] (II) intel(0): Modeline "640x480"x85.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 7.444] (II) intel(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 7.444] (II) intel(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 7.444] (II) intel(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 7.444] (II) intel(0): Output VGA1 connected
    [ 7.444] (II) intel(0): Using exact sizes for initial modes
    [ 7.444] (II) intel(0): Output VGA1 using initial mode 1024x768
    [ 7.444] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 7.444] (II) intel(0): Kernel page flipping support detected, enabling
    [ 7.444] (==) intel(0): DPI set to (96, 96)
    [ 7.444] (II) Loading sub module "fb"
    [ 7.444] (II) LoadModule: "fb"
    [ 7.444] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 7.458] (II) Module fb: vendor="X.Org Foundation"
    [ 7.458] compiled for 1.14.2, module version = 1.0.0
    [ 7.458] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 7.458] (II) Loading sub module "dri2"
    [ 7.458] (II) LoadModule: "dri2"
    [ 7.458] (II) Module "dri2" already built-in
    [ 7.458] (==) Depth 24 pixmap format is 32 bpp
    [ 7.466] (II) intel(0): [DRI2] Setup complete
    [ 7.466] (II) intel(0): [DRI2] DRI driver: i915
    [ 7.466] (II) intel(0): Allocated new frame buffer 1024x768 stride 4096, tiled
    [ 7.478] (II) UXA(0): Driver registered support for the following operations:
    [ 7.478] (II) solid
    [ 7.478] (II) copy
    [ 7.478] (II) composite (RENDER acceleration)
    [ 7.478] (II) put_image
    [ 7.478] (II) get_image
    [ 7.478] (==) intel(0): Backing store disabled
    [ 7.478] (==) intel(0): Silken mouse enabled
    [ 7.478] (II) intel(0): Initializing HW Cursor
    [ 7.478] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 7.480] (==) intel(0): DPMS enabled
    [ 7.480] (==) intel(0): Intel XvMC decoder disabled
    [ 7.480] (II) intel(0): Set up overlay video
    [ 7.480] (II) intel(0): direct rendering: DRI2 Enabled
    [ 7.480] (==) intel(0): hotplug detection: "enabled"
    [ 7.540] (--) RandR disabled
    [ 7.689] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 7.689] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 7.689] (II) AIGLX: enabled GLX_ARB_create_context
    [ 7.689] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 7.689] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 7.689] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 7.689] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 7.689] (II) AIGLX: Loaded and initialized i915
    [ 7.689] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 7.690] (II) intel(0): Setting screen physical size to 270 x 203
    [ 7.924] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 7.924] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 7.924] (II) LoadModule: "evdev"
    [ 7.925] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 7.943] (II) Module evdev: vendor="X.Org Foundation"
    [ 7.943] compiled for 1.14.2, module version = 2.8.1
    [ 7.943] Module class: X.Org XInput Driver
    [ 7.943] ABI class: X.Org XInput driver, version 19.1
    [ 7.943] (II) Using input driver 'evdev' for 'Power Button'
    [ 7.943] (**) Power Button: always reports core events
    [ 7.943] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 7.943] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 7.943] (--) evdev: Power Button: Found keys
    [ 7.943] (II) evdev: Power Button: Configuring as keyboard
    [ 7.943] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 7.943] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 7.943] (**) Option "xkb_rules" "evdev"
    [ 7.943] (**) Option "xkb_model" "pc104"
    [ 7.943] (**) Option "xkb_layout" "us"
    [ 7.980] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 7.980] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 7.980] (II) Using input driver 'evdev' for 'Power Button'
    [ 7.980] (**) Power Button: always reports core events
    [ 7.980] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 7.980] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 7.980] (--) evdev: Power Button: Found keys
    [ 7.980] (II) evdev: Power Button: Configuring as keyboard
    [ 7.981] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2/event2"
    [ 7.981] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 7.981] (**) Option "xkb_rules" "evdev"
    [ 7.981] (**) Option "xkb_model" "pc104"
    [ 7.981] (**) Option "xkb_layout" "us"
    [ 7.981] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 7.982] (II) config/udev: Adding input device OM (/dev/input/event1)
    [ 7.982] (**) OM: Applying InputClass "evdev pointer catchall"
    [ 7.982] (II) Using input driver 'evdev' for 'OM'
    [ 7.982] (**) OM: always reports core events
    [ 7.982] (**) evdev: OM: Device: "/dev/input/event1"
    [ 7.982] (--) evdev: OM: Vendor 0x4f3 Product 0x232
    [ 7.982] (--) evdev: OM: Found 3 mouse buttons
    [ 7.982] (--) evdev: OM: Found scroll wheel(s)
    [ 7.982] (--) evdev: OM: Found relative axes
    [ 7.982] (--) evdev: OM: Found x and y relative axes
    [ 7.982] (II) evdev: OM: Configuring as mouse
    [ 7.982] (II) evdev: OM: Adding scrollwheel support
    [ 7.982] (**) evdev: OM: YAxisMapping: buttons 4 and 5
    [ 7.982] (**) evdev: OM: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 7.982] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.1/usb2/2-2/2-2:1.0/input/input1/event1"
    [ 7.982] (II) XINPUT: Adding extended input device "OM" (type: MOUSE, id 8)
    [ 7.982] (II) evdev: OM: initialized for relative axes.
    [ 7.983] (**) OM: (accel) keeping acceleration scheme 1
    [ 7.983] (**) OM: (accel) acceleration profile 0
    [ 7.983] (**) OM: (accel) acceleration factor: 2.000
    [ 7.983] (**) OM: (accel) acceleration threshold: 4
    [ 7.983] (II) config/udev: Adding input device OM (/dev/input/mouse0)
    [ 7.983] (II) No input driver specified, ignoring this device.
    [ 7.983] (II) This device may have been added with another device file.
    [ 7.984] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 7.984] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 7.984] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 7.984] (**) AT Translated Set 2 keyboard: always reports core events
    [ 7.984] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 7.984] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 7.984] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 7.984] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 7.984] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 7.984] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 7.984] (**) Option "xkb_rules" "evdev"
    [ 7.984] (**) Option "xkb_model" "pc104"
    [ 7.984] (**) Option "xkb_layout" "us"
    [ 7.985] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 7.985] (II) No input driver specified, ignoring this device.
    [ 7.985] (II) This device may have been added with another device file.
    [ 29.826] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 53.275] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 53.426] (II) intel(0): EDID vendor "DEL", prod id 12610
    [ 53.427] (II) intel(0): Using EDID range info for horizontal sync
    [ 53.427] (II) intel(0): Using EDID range info for vertical refresh
    [ 53.427] (II) intel(0): Printing DDC gathered Modelines:
    [ 53.427] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 53.427] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 53.427] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 53.427] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 53.427] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 53.427] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 53.427] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 53.427] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 53.427] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 53.427] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 53.427] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 53.433] setversion 1.4 failed
    [ 57.450] (II) intel(0): EDID vendor "DEL", prod id 12610
    [ 57.450] (II) intel(0): Using hsync ranges from config file
    [ 57.450] (II) intel(0): Using vrefresh ranges from config file
    [ 57.450] (II) intel(0): Printing DDC gathered Modelines:
    [ 57.450] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 57.450] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 57.450] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 57.450] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 57.450] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 57.450] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 57.450] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 57.450] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 57.450] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 57.450] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 57.450] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 57.590] (II) intel(0): EDID vendor "DEL", prod id 12610
    [ 57.590] (II) intel(0): Using hsync ranges from config file
    [ 57.590] (II) intel(0): Using vrefresh ranges from config file
    [ 57.590] (II) intel(0): Printing DDC gathered Modelines:
    [ 57.590] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 57.590] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 57.590] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 57.590] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 57.590] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 57.590] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 57.590] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 57.590] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 57.590] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 57.590] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 57.590] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 57.763] (II) intel(0): EDID vendor "DEL", prod id 12610
    [ 57.763] (II) intel(0): Using hsync ranges from config file
    [ 57.763] (II) intel(0): Using vrefresh ranges from config file
    [ 57.763] (II) intel(0): Printing DDC gathered Modelines:
    [ 57.763] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 57.763] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 57.763] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 57.763] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 57.763] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 57.763] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 57.763] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 57.763] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 57.763] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 57.763] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 57.763] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    [ 57.903] (II) intel(0): EDID vendor "DEL", prod id 12610
    [ 57.903] (II) intel(0): Using hsync ranges from config file
    [ 57.903] (II) intel(0): Using vrefresh ranges from config file
    [ 57.903] (II) intel(0): Printing DDC gathered Modelines:
    [ 57.903] (II) intel(0): Modeline "1024x768"x0.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz eP)
    [ 57.903] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 57.903] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 57.903] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 57.903] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 57.903] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 57.903] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 57.903] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 57.903] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 57.903] (II) intel(0): Modeline "800x600"x0.0 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz e)
    [ 57.903] (II) intel(0): Modeline "640x480"x0.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz e)
    No doubt I have missed the pertinent log.
    Last edited by nef131 (2013-07-31 12:47:23)

    Oxyd,
    The current state of things, after removing gdm, slim and reinstalling lightdm, is that nothing has changed. In any event, below is the results of pacman -Qs lightdm:
    [allen@archbox ~]$ pacman -Qs lightdm
    local/lightdm 1:1.6.0-5 (lightdm)
    A lightweight display manager
    local/lightdm-gtk3-greeter 1:1.6.0-1
    GTK+ greeter for LightDM
    [allen@archbox ~]$
    The result of is cat /etc/lightdm/lightdm.conf:
    [allen@archbox ~]$ cat /etc/lightdm/lightdm.conf
    # General configuration
    # start-default-seat = True to always start one seat if none are defined in the configuration
    # greeter-user = User to run greeter as
    # minimum-display-number = Minimum display number to use for X servers
    # minimum-vt = First VT to run displays on
    # lock-memory = True to prevent memory from being paged to disk
    # user-authority-in-system-dir = True if session authority should be in the system location
    # guest-account-script = Script to be run to setup guest account
    # log-directory = Directory to log information to
    # run-directory = Directory to put running state in
    # cache-directory = Directory to cache to
    # xsessions-directory = Directory to find X sessions
    # remote-sessions-directory = Directory to find remote sessions
    # xgreeters-directory = Directory to find X greeters
    [LightDM]
    #start-default-seat=true
    #greeter-user=lightdm
    #minimum-display-number=0
    #minimum-vt=7
    #lock-memory=true
    #user-authority-in-system-dir=false
    #guest-account-script=guest-account
    #log-directory=/var/log/lightdm
    run-directory=/run/lightdm
    #cache-directory=/var/cache/lightdm
    #xsessions-directory=/usr/share/xsessions
    #remote-sessions-directory=/usr/share/lightdm/remote-sessions
    #xgreeters-directory=/usr/share/xgreeters
    # Seat defaults
    # type = Seat type (xlocal, xremote)
    # xserver-command = X server command to run (can also contain arguments e.g. X -special-option)
    # xserver-layout = Layout to pass to X server
    # xserver-config = Config file to pass to X server
    # xserver-allow-tcp = True if TCP/IP connections are allowed to this X server
    # xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true)
    # xdmcp-port = XDMCP UDP/IP port to communicate on
    # xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf)
    # greeter-session = Session to load for greeter
    # greeter-hide-users = True to hide the user list
    # greeter-allow-guest = True if the greeter should show a guest login option
    # greeter-show-manual-login = True if the greeter should offer a manual login option
    # greeter-show-remote-login = True if the greeter should offer a remote login option
    # user-session = Session to load for users
    # allow-guest = True if guest login is allowed
    # guest-session = Session to load for guests (overrides user-session)
    # session-wrapper = Wrapper script to run session with
    # display-setup-script = Script to run when starting a greeter session (runs as root)
    # greeter-setup-script = Script to run when starting a greeter (runs as root)
    # session-setup-script = Script to run when starting a user session (runs as root)
    # session-cleanup-script = Script to run when quitting a user session (runs as root)
    # autologin-guest = True to log in as guest by default
    # autologin-user = User to log in with by default (overrides autologin-guest)
    # autologin-user-timeout = Number of seconds to wait before loading default user
    # autologin-session = Session to load for automatic login (overrides user-session)
    # exit-on-failure = True if the daemon should exit if this seat fails
    [SeatDefaults]
    #type=xlocal
    #xserver-command=X
    #xserver-layout=
    #xserver-config=
    #xserver-allow-tcp=false
    #xdmcp-manager=
    #xdmcp-port=177
    #xdmcp-key=
    #greeter-session=example-gtk-gnome
    #greeter-hide-users=false
    #greeter-allow-guest=true
    #greeter-show-manual-login=false
    #greeter-show-remote-login=true
    #user-session=default
    #allow-guest=true
    #guest-session=UNIMPLEMENTED
    session-wrapper=/etc/lightdm/xsession
    #display-setup-script=
    #greeter-setup-script=
    #session-setup-script=
    #session-cleanup-script=
    #autologin-guest=false
    #autologin-user=
    #autologin-user-timeout=0
    #autologin-session=UNIMPLEMENTED
    pam-service=lightdm-autologin
    #exit-on-failure=false
    # Seat configuration
    # Each seat must start with "Seat:".
    # Uses settings from [SeatDefaults], any of these can be overriden by setting them in this section.
    #[Seat:0]
    # XDMCP Server configuration
    # enabled = True if XDMCP connections should be allowed
    # port = UDP/IP port to listen for connections on
    # key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf)
    # The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively
    # it can be a word and the first 7 characters are used as the key.
    [XDMCPServer]
    #enabled=false
    #port=177
    #key=
    # VNC Server configuration
    # enabled = True if VNC connections should be allowed
    # command = Command to run Xvnc server with
    # port = TCP/IP port to listen for connections on
    # width = Width of display to use
    # height = Height of display to use
    # depth = Color depth of display to use
    [VNCServer]
    #enabled=false
    #command=Xvnc
    #port=5900
    #width=1024
    #height=768
    #depth=8
    The result of cat /etc/lightdm/lightdm-gtk-greeter.conf is :
    [allen@archbox ~]$ cat /etc/lightdm/lightdm-gtk-greeter.conf
    # background = Background file to use, either an image path or a color (e.g. #772953)
    # theme-name = GTK+ theme to use
    # icon-theme-name = Icon theme to use
    # font-name = Font to use
    # xft-antialias = Whether to antialias Xft fonts (true or false)
    # xft-dpi = Resolution for Xft in dots per inch (e.g. 96)
    # xft-hintstyle = What degree of hinting to use (none, slight, medium, or full)
    # xft-rgba = Type of subpixel antialiasing (none, rgb, bgr, vrgb or vbgr)
    # show-language-selector (true or false)
    # show-indicators = semi-colon ";" separated list of allowed indicator modules (e.g. libsoundmenu.so)
    # show-clock (true or false)
    # clock-format = strftime-format string, e.g. %H:%M
    # keyboard = command to launch on-screen keyboard
    [greeter]
    #background=
    #theme-name=
    #icon-theme-name=
    #font-name=
    #xft-antialias=
    #xft-dpi=
    #xft-hintstyle=
    #xft-rgba=
    #show-language-selector=
    #show-indicators=
    #show-clock=
    #clock-format=
    #keyboard=
    Cfr: "Did you test X following the Beginners' Guide?"
    Yes. I tested X. I believe that I followed the Beginner's Guide to the letter. Of course, I am new to Arch, so it is possible I misunderstood something. I believe what I did was to enter the following command to install X: pacman -S xorg-server xorg-server-utils xorg-xinit and then, as provided in the guide, I installed mesa.
    I have, per your suggestion, removed xorg-server-xephyr. I note, however, that the guide for installing lightdm indicates that the package should be installed initially, in order to test to see if lightdm works. In any event, removing it does not alter how the system starts up.
    You are correct that I am starting the computer directly to lightdm - and not starting lightdm from X - but lightdm leaves a blank page, as I noted. I can click around on the blank page and stuff pops up. On looking at Oxyd's suggested outputs, I wonder if my problem is that nearly everything in the configuration file has been commented out.

  • Font antialiasing in Terminal with Dual Screen setup

    I am reposting basically the same problem found here: http://discussions.apple.com/thread.jspa?threadID=1472322 because I didn't find any solution browsing through the board.
    Basically the problem is this:
    1. Using only the laptop screen I have no problem. If I launch terminal with a single screen and then connect a second monitor I still have no problem.
    2. If I then quit terminal and relaunch it it's like the font loses some antialiasing, it's much more thinner.
    3. If I disconnect the second monitor it doesn't fix itself, I have to quit and relaunch terminal.

    emeres wrote:
    Does running the applications with DISPLAY variable help?
    env DISPLAY=:0.1 pcsx
    Setting the gaming monitor as primary output with xrandr might also help, if you get it running again. Take a look at dmesg about any warnings or errors and what modules are loaded.
    I actually just started experimenting with DISPLAY, and it works how I want it to.  I'm going to play with that a little bit (write scripts to launch my programs on that screen) to get the result I want.  So, I think this issue is solved.  Thanks.

  • Aperture 3 Display Bug and Export to Flickr Bug

    Has anyone else experienced this issue, and if so what systems do you have and what graphics card are you using?
    The issue is the way images are displayed in Aperture. There seems to have been a change in the anti-aliasing between 2 and 3 so than now images with strong highlights display nasty aliasing artefacts and black ringing around highlight edges. It's as if Images are being over-sharpened. Also, when you first move to an Image it displays perfectly fine while it’s loading then when it’s finished it pops into the over sharp aliased version.
    I'm having this issue on my iMac 24" running a ATI RadeonHD2600. It seems to only show when the onscreen display is zoomed out to 25% or less. If you go to fullscreen the artefacts disappear on landscape oriented images but remain on portrait. If you zoom in, once you pass a certain zoom factor they disappear.
    I have posted some samples of the artefacts here - as well as what they should look like.
    http://www.thomas-fitzgerald.net/2010/04/28/aperture-3-is-really-ticking-me-off/
    and here
    http://theapertureblog.com/2010/03/29/aperture-display-bug/
    The bigger issue is that when exporting using the built in fickr tool it uses the same antialiasing and so over sharpens and degrades images the same way.
    The problem is not always apparent and it really only shows with images containing high contrast areas, particularly if they clip to white. I would really like to know if this is limited to certain graphics cards as I've talked to someone who has this issue when using the faster gfx card on their macbook pro but not when they turn on the slower one.
    If I need to upgrade my mac to make this issue go away then so be it but I'd really like to hear form others who may have seen it?

    I have had issues with Aperture's anti-aliasing performance in the Viewer since version 1.5.
    To summarize, Aperture's Viewer produces quite jagged edges from Canon RAW files compared to Preview's and Lightroom's renderings of the exact same files. There doesn't seem to be any radical improvements with the 3.x upgrades, and aliasing performance didn't seem to be affected by the updates to Apple's Canon RAW converter (I reprocessed). Images that I had a problem with are still problematic.
    I thought that [this thread|http://discussions.apple.com/thread.jspa?threadID=669881&tstart=0] referring to Aperture 1.5 laid out the issues pretty clearly and I was surprised at how little other users were affected by it (or so I infer from the number of responses.)
    Until your post I had not looked specifically at Aperture 3.x. I haven't been able to exactly reproduce the issues I had (so many versions ago...) in Aperture 1.5 and it seems the situation has improved a bit.
    Aperture still produces a much sharper rendering than Preview, though the aliased edges are not as prominent. To recap from Aperture 1.5:
    !http://homepage.mac.com/steve_hoge/.Pictures/AliasedApertureRender.tiff!
    And here's what I see in Aperture 3 on the same image:
    !http://homepage.mac.com/steve_hoge/.Pictures/aliasedA3.tiff!
    Which looks about the same to me on near-horizontal lines, but much better on the high-contrast vertical lines (check upper left corner of the frame).
    And today's Preview 5.0.2 rendering of the RAW image is even softer and less contrast-y than back in the day:
    !http://homepage.mac.com/steve_hoge/.Pictures/antialiasedPrev.tiff!
    -Steve
    http://web.mac.com/steve_hoge
    http://www.flickr.com/steve_hoge

  • Problems displaying fonts

    Hello.
    I am developing my first application using JavaFX 2.2 and I am not able to get a good visualization of the texts. The majority of texts in the application are displayed using Label controls, and I have read that, since Javafx 2.1, font rendering has been improved, including anti-aliasing and subpixel LCD treatment. However, I see some problems in my fonts, like wrong letter glyphs, unexpected colors etc.
    As Linux is my execution environment, I have tried to configure fonts in the system through Gnome options, but it does not seem to affect to the application. I have also checked that my FreeType version is quite modern and I have changed the configuration of the fonts.conf, but neither it worked.
    I have tested some JVM parameters, like -Dawt.useSystemAAFontSettings, but it only works if the graphical aceleration is disabled, so it is not a solution for me.
    The only thing that I can configure and seems to affect to the application is the antialiasing level in the NVidia controls, but it has the drawback that the smoothing is lost and the overall result is even worse.
    The operating system is a RHEL 6.2 and the grhaphic card an NVidia Quadro 2000D. The JavaFX version I am using is the 2.2 Developer Preview b19 and the fonts in the application are Arial and Consolas.
    As I have read in the JavaFX documentation, although with Text you can make some adjustments regarding fonts, that is not the case when using Label.
    Is it possible to change the configuration of fonts rendering in JavaFX to improve the visualization? How?
    Thanks.
    Regards.
    Edited by: vshorreo on 16-ago-2012 23:55

    I have also tested the application in some PCs with Windows and the visualization problems are significantly lower.
    Regards.

  • Blurry images on retina display

    Hi,
    I have just purchased a macbook pro retina, and when I browse the web, most of the images appear blurry. I understand that the images are supposed to be less crisp than the rest of the content (like fonts) because of lower DPI resolusion of the image.
    However, it appears that OS X scales the images for some reason before displaying them which makes them even more blurry. I have the same website opened at my old macbook pro, and new retina macbook pro, and the logo image looks much crisper on the old MBP.
    Apple says that MBP Retina has 4x more pixels than the old MBP. If that is true, the old one pixel should be displayed by 4 new pixels and there should be no scaling / antialiasing involved.
    Is there a way to fix this?
    thanks
    Karolis

    By reading some other forums, I found that the issue is related to Safari smoothing images, and not the operating system itself. I have tried the same test with Google Chrome and the images look OK on Chrome.
    So the question... is there a way to tell safari not to do image smoothing when scaling from 72 dpi to 144 dpi?

  • Watermark Not Antialiased?

    Maybe I'm doing something wrong...
    I created my watermark in Photoshop as described in the manual. It's one layer of antialiased text with a transparent background.
    When I export from Aperture, the watermark shows up with jaggies because it lacks antialiasing.
    Is that the way it's supposed to work, or did I miss something?
    Paul
    PowerBook G4    

    How can I tell?
    I checked "Show Watermark," chose to position it in the "Lower Right," set the opacity to "1.0," and then chose the PSD.
    The watermark then shows up in the preset, but I don't see any way to set or check the scale.
    Nevermind. The problem appears to be the way Preview displays the exported photo.
    I brought the exported photo into Photoshop to compare the size of the original watermark and the size of the watermark on the exported photo.
    When I did so, I found the watermark was properly scaled and looked just as I expected... complete with antialiasing.
    Thanks for the help!
    Paul
    PowerBook G4

  • 23" Display seems to show bold fonts in Safari and Mail

    Hi,
    I have just installed my new 23" Apple Cinema display and in some applications some fonts seem extra bold. The unread mail number is bold. The blue headlines at www.theregister.com at extra bold.
    Is their something I am missing to fix this? Other than that it is a lovely display.
    Best wishes
    Michael

    I think it's likely that you haven't quite adjusted to the display yet. Depending on what you were previously using it can be quite a difference not only in contrast and brightness but the cinema displays are 100 dpi which is probably not much more than most desktops but it's a much larger scale than a notebook display.
    I suppose it could be a glitch,
    You might check your System Preferences> Appearance>
    and make sure that the font antialiasing at the bottom is 8 (which is the standard setting) I think the OS X default changed to 4 somewhere along the line and that screws up some apps.
    Other than that it could be a real glitch in the font caches. You can simply remove caches if they become corrupt and new ones will be created. You caches are located:
    /Library/Caches/com.apple.ATS/501/
    The last directory is the user (501) which is the default setup with one user, you can just trash all users though if you have more.
    Other than that the only possibility is that ether your system fonts are corrupt or your extras.rsrc containing the font settings have been altered (both highly unlikely) and require admin privileges.

Maybe you are looking for