aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/others/irrlicht-1.8.1/include/IIndexBuffer.h
blob: 5599b0fb3d98db1a921a15eb047c5f0220af7292 (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Copyright (C) 2008-2012 Nikolaus Gebhardt
// This file is part of the "Irrlicht Engine".
// For conditions of distribution and use, see copyright notice in irrlicht.h

#ifndef __I_INDEX_BUFFER_H_INCLUDED__
#define __I_INDEX_BUFFER_H_INCLUDED__

#include "IReferenceCounted.h"
#include "irrArray.h"

#include "SVertexIndex.h"

namespace irr
{

namespace video
{

}

namespace scene
{

	class IIndexBuffer : public virtual IReferenceCounted
	{
	public:

		virtual void* getData() =0;

		virtual video::E_INDEX_TYPE getType() const =0;
		virtual void setType(video::E_INDEX_TYPE IndexType) =0;

		virtual u32 stride() const =0;

		virtual u32 size() const =0;
		virtual void push_back (const u32 &element) =0;
		virtual u32 operator [](u32 index) const =0;
		virtual u32 getLast() =0;
		virtual void setValue(u32 index, u32 value) =0;
		virtual void set_used(u32 usedNow) =0;
		virtual void reallocate(u32 new_size) =0;
		virtual u32 allocated_size() const=0;

		virtual void* pointer() =0;

		//! get the current hardware mapping hint
		virtual E_HARDWARE_MAPPING getHardwareMappingHint() const =0;

		//! set the hardware mapping hint, for driver
		virtual void setHardwareMappingHint( E_HARDWARE_MAPPING NewMappingHint ) =0;

		//! flags the meshbuffer as changed, reloads hardware buffers
		virtual void setDirty() = 0;

		//! Get the currently used ID for identification of changes.
		/** This shouldn't be used for anything outside the VideoDriver. */
		virtual u32 getChangedID() const = 0;
	};


} // end namespace scene
} // end namespace irr

#endif