Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove freetype library and references #1728

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions Frameworks/CoreGraphics/CGContextCairo.mm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//******************************************************************************
//
// Copyright (c) 2016 Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
Expand Down Expand Up @@ -38,23 +38,14 @@

#define CAIRO_WIN32_STATIC_BUILD

#import "cairo-ft.h"

extern "C" {
#import <ft2build.h>
#import FT_FREETYPE_H
#import <ftadvanc.h>
#import <ftglyph.h>
#import <ftsizes.h>
#import <tttables.h>
}

#include "LoggingNative.h"
#import <StubReturn.h>

#import <vector>
#import <algorithm>

#import <cairo.h>

using namespace Microsoft::WRL;

static const wchar_t* TAG = L"CGContextCairo";
Expand Down
11 changes: 1 addition & 10 deletions Frameworks/CoreGraphics/CGContextImpl.mm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//******************************************************************************
//
// Copyright (c) 2016 Intel Corporation. All rights reserved.
// Copyright (c) 2016 Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
Expand All @@ -26,15 +26,6 @@
#import "UIFontInternal.h"
#import "CGSurfaceInfoInternal.h"

extern "C" {
#import <ft2build.h>
#import FT_FREETYPE_H
#import <ftadvanc.h>
#import <ftglyph.h>
#import <ftsizes.h>
#import <tttables.h>
}

#include "LoggingNative.h"

static const wchar_t* TAG = L"CGContextImpl";
Expand Down
Loading