blob: bde5244d0b2ef37f176e7b83fdca847684a75c63 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*
* CoreVideo.h
* CoreVideo
*
* Copyright (c) 2004 Apple Computer, Inc. All rights reserved.
*
*/
/*!
@header CoreVideo
@copyright 2004 Apple Computer, Inc. All rights reserved.
@availability Mac OS X 10.4 or later
@abstract Umbrella header for the CoreVideo framework
@discussion This header includes all necesssary headers for the CoreVideo API
*/
#include <TargetConditionals.h>
#include <AvailabilityMacros.h>
#if TARGET_OS_MAC
#include <QuartzCore/CVReturn.h>
#include <QuartzCore/CVBase.h>
#include <QuartzCore/CVHostTime.h>
#include <QuartzCore/CVDisplayLink.h>
#include <QuartzCore/CVBuffer.h>
#include <QuartzCore/CVPixelBuffer.h>
#include <QuartzCore/CVPixelBufferPool.h>
#include <QuartzCore/CVOpenGLBuffer.h>
#include <QuartzCore/CVOpenGLBufferPool.h>
#include <QuartzCore/CVOpenGLTexture.h>
#include <QuartzCore/CVOpenGLTextureCache.h>
#include <QuartzCore/CVPixelFormatDescription.h>
#else
#include <CVReturn.h>
#include <CVBase.h>
#include <CVHostTime.h>
#include <CVBuffer.h>
#include <CVPixelBuffer.h>
#include <CVPixelBufferPool.h>
#include <CVPixelFormatDescription.h>
#include <CVDirect3DBuffer.h>
#include <CVDirect3DBufferPool.h>
#include <CVDirect3DTexture.h>
#include <CVDirect3DTextureCache.h>
#endif
|