~ubuntu-branches/ubuntu/maverick/blender/maverick

« back to all changes in this revision

Viewing changes to source/blender/include/BDR_drawobject.h

  • Committer: Bazaar Package Importer
  • Author(s): Khashayar Naderehvandi, Khashayar Naderehvandi, Alessio Treglia
  • Date: 2009-01-22 16:53:59 UTC
  • mfrom: (14.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090122165359-v0996tn7fbit64ni
Tags: 2.48a+dfsg-1ubuntu1
[ Khashayar Naderehvandi ]
* Merge from debian experimental (LP: #320045), Ubuntu remaining changes:
  - Add patch correcting header file locations.
  - Add libvorbis-dev and libgsm1-dev to Build-Depends.
  - Use avcodec_decode_audio2() in source/blender/src/hddaudio.c

[ Alessio Treglia ]
* Add missing previous changelog entries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: BDR_drawobject.h 14444 2008-04-16 22:40:48Z hos $
 
2
 * $Id: BDR_drawobject.h 16366 2008-09-04 20:51:28Z blendix $
3
3
 *
4
4
 * ***** BEGIN GPL LICENSE BLOCK *****
5
5
 *
47
47
struct EditFace;
48
48
struct EditEdge;
49
49
 
50
 
int set_gl_material(int nr);
51
 
int init_gl_materials(struct Object *ob, int check_alpha);
 
50
int draw_glsl_material(struct Object *ob, int dt);
52
51
 
53
52
void mesh_foreachScreenVert(void (*func)(void *userData, struct EditVert *eve, int x, int y, int index), void *userData, int clipVerts);
54
53
void mesh_foreachScreenEdge(void (*func)(void *userData, struct EditEdge *eed, int x0, int y0, int x1, int y1, int index), void *userData, int clipVerts);
63
62
/* drawing flags: */
64
63
#define DRAW_PICKING    1
65
64
#define DRAW_CONSTCOLOR 2
 
65
#define DRAW_SCENESET   4
66
66
void draw_object(struct Base *base, int flag);
67
67
void drawaxes(float size, int flag, char drawtype);
68
68