22 lines
292 B
Objective-C
22 lines
292 B
Objective-C
//
|
|
// texture_objc.h
|
|
// J
|
|
//
|
|
// Created by Joshua Moerman on 6/23/12.
|
|
// Copyright (c) 2012 Vadovas. All rights reserved.
|
|
//
|
|
|
|
#ifndef J_texture_objc_h
|
|
#define J_texture_objc_h
|
|
|
|
#include "texture.h"
|
|
|
|
@class UIImage;
|
|
|
|
namespace J {
|
|
|
|
rgba<> texture_from_UIImage(UIImage * image);
|
|
|
|
}
|
|
|
|
#endif
|