2 * Copyright 2009, Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
6 * Alexandre Deckner <alex@zappotek.com>
8 #ifndef _VIDEO_FILE_TEXTURE_H
9 #define _VIDEO_FILE_TEXTURE_H
19 class VideoFileTexture
: public Texture
{
21 VideoFileTexture(const char* fileName
);
22 virtual ~VideoFileTexture();
24 virtual void Update(float dt
);
26 void _Load(const char* fileName
);
28 BMediaFile
* fMediaFile
;
29 BMediaTrack
* fVideoTrack
;
30 BBitmap
* fVideoBitmap
;
33 #endif /* _VIDEO_TEXTURE_H */