| Revision 2897,
824 bytes
checked in by jylam, 5 years ago
(diff) |
- Added preliminary support of CoreImage? (Cocoa/Mac? OS X)
Changed default hidden unicode glyph to 'x' in The Pimp to fix a compilation problem
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | * libpipi Proper image processing implementation library |
|---|
| 3 | * Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org> |
|---|
| 4 | * 2008 Jean-Yves Lamoureux <jylam@lnxscene.org> |
|---|
| 5 | * All Rights Reserved |
|---|
| 6 | * |
|---|
| 7 | * $Id$ |
|---|
| 8 | * |
|---|
| 9 | * This library is free software. It comes without any warranty, to |
|---|
| 10 | * the extent permitted by applicable law. You can redistribute it |
|---|
| 11 | * and/or modify it under the terms of the Do What The Fuck You Want |
|---|
| 12 | * To Public License, Version 2, as published by Sam Hocevar. See |
|---|
| 13 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
|---|
| 14 | */ |
|---|
| 15 | |
|---|
| 16 | /* |
|---|
| 17 | * coreimage.m: CoreImage (OSX) I/O functions |
|---|
| 18 | */ |
|---|
| 19 | |
|---|
| 20 | #include "config.h" |
|---|
| 21 | #ifdef USE_COCOA |
|---|
| 22 | |
|---|
| 23 | #include "common.h" |
|---|
| 24 | |
|---|
| 25 | #include <stdio.h> |
|---|
| 26 | #include <stdlib.h> |
|---|
| 27 | #include <string.h> |
|---|
| 28 | |
|---|
| 29 | #import <Cocoa/Cocoa.h> |
|---|
| 30 | |
|---|
| 31 | #include "pipi.h" |
|---|
| 32 | #include "pipi_internals.h" |
|---|
| 33 | |
|---|
| 34 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.