repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git] / src / apps / haiku3d / texture / BitmapTexture.h
blob14b20614cea562a11458b854fb6f2609bdb6da83
1 /*
2 * Copyright 2009, Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Alexandre Deckner <alex@zappotek.com>
7 */
8 #ifndef _BITMAP_TEXTURE_H
9 #define _BITMAP_TEXTURE_H
11 #include "Texture.h"
13 class BBitmap;
15 class BitmapTexture : public Texture {
16 public:
17 BitmapTexture(BBitmap* bitmap);
18 virtual ~BitmapTexture();
20 protected:
21 void _Load(BBitmap* bitmap);
24 #endif /* _BITMAP_TEXTURE_H */