forked from cinder/Cinder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/dev'
- Loading branch information
Showing
2,915 changed files
with
546,913 additions
and
107,188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
### Cinder 0.8.5: [libcinder.org](http://libcinder.org) | ||
### Cinder 0.8.6: [libcinder.org](http://libcinder.org) | ||
|
||
**Cinder is a peer-reviewed, free, open source C++ library for creative coding.** | ||
|
||
To get started with Cinder from GitHub, please read this [git setup document](http://libcinder.org/docs/welcome/GitSetup.html). You might also prefer one of our [pre-packaged downloads](http://libcinder.org/download/). | ||
|
||
Cinder supports Mac OS X, Windows and iOS. It requires Xcode 4.4 or later for development on the Mac, and Visual C++ 2010 or later on Windows. | ||
Cinder supports Mac OS X, Windows and iOS. It requires Xcode 4.4 or later for development on the Mac, and Visual C++ 2012 or later on Windows. | ||
|
||
Cinder is released under the Modified BSD License. Please read the [welcome document](Welcome.html) for more information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
/* Generated by Makefile.win32. Do not edit. */ | ||
/* Generated by Makefile.win32.features-h. Do not edit. */ | ||
#ifndef CAIRO_FEATURES_H | ||
#define CAIRO_WIN32_STATIC_BUILD | ||
#define CAIRO_FEATURES_H 1 | ||
#define CAIRO_HAS_WIN32_SURFACE 1 | ||
#define CAIRO_HAS_WIN32_FONT 1 | ||
#define CAIRO_HAS_PNG_FUNCTIONS 0 | ||
#define CAIRO_HAS_PNG_FUNCTIONS 1 | ||
#define CAIRO_HAS_SCRIPT_SURFACE 1 | ||
#define CAIRO_HAS_PS_SURFACE 1 | ||
#define CAIRO_HAS_PDF_SURFACE 1 | ||
#define CAIRO_HAS_SVG_SURFACE 1 | ||
#define CAIRO_HAS_IMAGE_SURFACE 1 | ||
#define CAIRO_HAS_MIME_SURFACE 1 | ||
#define CAIRO_HAS_RECORDING_SURFACE 1 | ||
#define CAIRO_HAS_OBSERVER_SURFACE 1 | ||
#define CAIRO_HAS_USER_FONT 1 | ||
#define CAIRO_HAS_INTERPRETER 1 | ||
#define CAIRO_NO_MUTEX 1 | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
/* cairo - a vector graphics library with display and print output | ||
* | ||
* Copyright © 2008 Chris Wilson | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it either under the terms of the GNU Lesser General Public | ||
* License version 2.1 as published by the Free Software Foundation | ||
* (the "LGPL") or, at your option, under the terms of the Mozilla | ||
* Public License Version 1.1 (the "MPL"). If you do not alter this | ||
* notice, a recipient may use your version of this file under either | ||
* the MPL or the LGPL. | ||
* | ||
* You should have received a copy of the LGPL along with this library | ||
* in the file COPYING-LGPL-2.1; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA | ||
* You should have received a copy of the MPL along with this library | ||
* in the file COPYING-MPL-1.1 | ||
* | ||
* The contents of this file are subject to the Mozilla Public License | ||
* Version 1.1 (the "License"); you may not use this file except in | ||
* compliance with the License. You may obtain a copy of the License at | ||
* http://www.mozilla.org/MPL/ | ||
* | ||
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY | ||
* OF ANY KIND, either express or implied. See the LGPL or the MPL for | ||
* the specific language governing rights and limitations. | ||
* | ||
* The Original Code is the cairo graphics library. | ||
* | ||
* The Initial Developer of the Original Code is Chris Wilson | ||
* | ||
* Contributor(s): | ||
* Chris Wilson <[email protected]> | ||
*/ | ||
|
||
#ifndef CAIRO_SCRIPT_H | ||
#define CAIRO_SCRIPT_H | ||
|
||
#include "cairo.h" | ||
|
||
#if CAIRO_HAS_SCRIPT_SURFACE | ||
|
||
CAIRO_BEGIN_DECLS | ||
|
||
/** | ||
* cairo_script_mode_t: | ||
* @CAIRO_SCRIPT_MODE_ASCII: the output will be in readable text (default). (Since 1.12) | ||
* @CAIRO_SCRIPT_MODE_BINARY: the output will use byte codes. (Since 1.12) | ||
* | ||
* A set of script output variants. | ||
* | ||
* Since: 1.12 | ||
**/ | ||
typedef enum { | ||
CAIRO_SCRIPT_MODE_ASCII, | ||
CAIRO_SCRIPT_MODE_BINARY | ||
} cairo_script_mode_t; | ||
|
||
cairo_public cairo_device_t * | ||
cairo_script_create (const char *filename); | ||
|
||
cairo_public cairo_device_t * | ||
cairo_script_create_for_stream (cairo_write_func_t write_func, | ||
void *closure); | ||
|
||
cairo_public void | ||
cairo_script_write_comment (cairo_device_t *script, | ||
const char *comment, | ||
int len); | ||
|
||
cairo_public void | ||
cairo_script_set_mode (cairo_device_t *script, | ||
cairo_script_mode_t mode); | ||
|
||
cairo_public cairo_script_mode_t | ||
cairo_script_get_mode (cairo_device_t *script); | ||
|
||
cairo_public cairo_surface_t * | ||
cairo_script_surface_create (cairo_device_t *script, | ||
cairo_content_t content, | ||
double width, | ||
double height); | ||
|
||
cairo_public cairo_surface_t * | ||
cairo_script_surface_create_for_target (cairo_device_t *script, | ||
cairo_surface_t *target); | ||
|
||
cairo_public cairo_status_t | ||
cairo_script_from_recording_surface (cairo_device_t *script, | ||
cairo_surface_t *recording_surface); | ||
|
||
CAIRO_END_DECLS | ||
|
||
#else /*CAIRO_HAS_SCRIPT_SURFACE*/ | ||
# error Cairo was not compiled with support for the CairoScript backend | ||
#endif /*CAIRO_HAS_SCRIPT_SURFACE*/ | ||
|
||
#endif /*CAIRO_SCRIPT_H*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 2012 | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OscListener", "OscListener.vcxproj", "{5893D06B-76E4-4791-9271-F48E042DBE61}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Win32 = Debug|Win32 | ||
Debug|x64 = Debug|x64 | ||
Release|Win32 = Release|Win32 | ||
Release|x64 = Release|x64 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{5893D06B-76E4-4791-9271-F48E042DBE61}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
{5893D06B-76E4-4791-9271-F48E042DBE61}.Debug|Win32.Build.0 = Debug|Win32 | ||
{5893D06B-76E4-4791-9271-F48E042DBE61}.Debug|x64.ActiveCfg = Debug|x64 | ||
{5893D06B-76E4-4791-9271-F48E042DBE61}.Debug|x64.Build.0 = Debug|x64 | ||
{5893D06B-76E4-4791-9271-F48E042DBE61}.Release|Win32.ActiveCfg = Release|Win32 | ||
{5893D06B-76E4-4791-9271-F48E042DBE61}.Release|Win32.Build.0 = Release|Win32 | ||
{5893D06B-76E4-4791-9271-F48E042DBE61}.Release|x64.ActiveCfg = Release|x64 | ||
{5893D06B-76E4-4791-9271-F48E042DBE61}.Release|x64.Build.0 = Release|x64 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
Oops, something went wrong.