File: classCEGUI_1_1RenderingWindow.html

package info (click to toggle)
cegui-mk2 0.7.6-3.3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 105,388 kB
  • ctags: 82,178
  • sloc: cpp: 142,729; ansic: 27,984; sh: 11,010; makefile: 2,275; python: 916; xml: 17
file content (671 lines) | stat: -rw-r--r-- 69,247 bytes parent folder | download | duplicates (2)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Crazy Eddies GUI System: CEGUI::RenderingWindow Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.4 -->
<script type="text/javascript">
function hasClass(ele,cls) {
  return ele.className.match(new RegExp('(\\s|^)'+cls+'(\\s|$)'));
}

function addClass(ele,cls) {
  if (!this.hasClass(ele,cls)) ele.className += " "+cls;
}

function removeClass(ele,cls) {
  if (hasClass(ele,cls)) {
    var reg = new RegExp('(\\s|^)'+cls+'(\\s|$)');
    ele.className=ele.className.replace(reg,' ');
  }
}

function toggleVisibility(linkObj) {
 var base = linkObj.getAttribute('id');
 var summary = document.getElementById(base + '-summary');
 var content = document.getElementById(base + '-content');
 var trigger = document.getElementById(base + '-trigger');
 if ( hasClass(linkObj,'closed') ) {
   summary.style.display = 'none';
   content.style.display = 'block';
   trigger.src = 'open.png';
   removeClass(linkObj,'closed');
   addClass(linkObj,'opened');
 } else if ( hasClass(linkObj,'opened') ) {
   summary.style.display = 'block';
   content.style.display = 'none';
   trigger.src = 'closed.png';
   removeClass(linkObj,'opened');
   addClass(linkObj,'closed');
 }
 return false;
}
</script>
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td style="padding-left: 0.5em;">
   <div id="projectname">Crazy Eddies GUI System&#160;<span id="projectnumber">0.7.6</span></div>
  </td>
 </tr>
 </tbody>
</table>
</div>
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="annotated.html"><span>Class&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
  <div id="nav-path" class="navpath">
    <ul>
      <li class="navelem"><a class="el" href="namespaceCEGUI.html">CEGUI</a>      </li>
      <li class="navelem"><a class="el" href="classCEGUI_1_1RenderingWindow.html">RenderingWindow</a>      </li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pro-methods">Protected Member Functions</a> &#124;
<a href="#pro-attribs">Protected Attributes</a> &#124;
<a href="#friends">Friends</a>  </div>
  <div class="headertitle">
<div class="title">CEGUI::RenderingWindow Class Reference</div>  </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::RenderingWindow" --><!-- doxytag: inherits="CEGUI::RenderingSurface" -->
<p><a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> is a <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> that can be "drawn back" onto another <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> and is primarily intended to be used as a kind of cache for rendered imagery.  
 <a href="classCEGUI_1_1RenderingWindow.html#details">More...</a></p>
<div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
  <img id="dynsection-0-trigger" src="closed.png"/> Inheritance diagram for CEGUI::RenderingWindow:</div>
<div id="dynsection-0-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-0-content" class="dyncontent" style="display:none;">
<div class="center"><img src="classCEGUI_1_1RenderingWindow__inherit__graph.gif" border="0" usemap="#CEGUI_1_1RenderingWindow_inherit__map" alt="Inheritance graph"/></div>
<map name="CEGUI_1_1RenderingWindow_inherit__map" id="CEGUI_1_1RenderingWindow_inherit__map">
<area shape="rect" id="node2" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it." alt="" coords="7,83,183,112"/><area shape="rect" id="node4" href="classCEGUI_1_1EventSet.html" title="Class that collects together a set of Event objects." alt="" coords="32,5,157,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div id="dynsection-1" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
  <img id="dynsection-1-trigger" src="closed.png"/> Collaboration diagram for CEGUI::RenderingWindow:</div>
<div id="dynsection-1-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-1-content" class="dyncontent" style="display:none;">
<div class="center"><img src="classCEGUI_1_1RenderingWindow__coll__graph.gif" border="0" usemap="#CEGUI_1_1RenderingWindow_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1RenderingWindow_coll__map" id="CEGUI_1_1RenderingWindow_coll__map">
<area shape="rect" id="node2" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it." alt="" coords="5,5,181,35"/><area shape="rect" id="node4" href="classCEGUI_1_1Size.html" title="Class that holds the size (width &amp; height) of something." alt="" coords="205,5,304,35"/><area shape="rect" id="node6" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer objects." alt="" coords="328,5,453,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="classCEGUI_1_1RenderingWindow-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a0b0a750c6a261ec60a43e397cc480d51">RenderingWindow</a> (<a class="el" href="classCEGUI_1_1TextureTarget.html">TextureTarget</a> &amp;target, <a class="el" href="classCEGUI_1_1RenderingSurface.html">RenderingSurface</a> &amp;owner)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor for <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> objects.  <a href="#a0b0a750c6a261ec60a43e397cc480d51"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab0b34ba66fccc34f6a845e2856d13559"></a><!-- doxytag: member="CEGUI::RenderingWindow::~RenderingWindow" ref="ab0b34ba66fccc34f6a845e2856d13559" args="()" -->
&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#ab0b34ba66fccc34f6a845e2856d13559">~RenderingWindow</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor for <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> objects. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a054bc0c9f16c69e9ec7d8c167c637737">setClippingRegion</a> (const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> &amp;region)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the clipping region that will be used when rendering the imagery for this <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> back onto the <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> that owns it.  <a href="#a054bc0c9f16c69e9ec7d8c167c637737"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a321f40993eef7f80c2136410cf2c95d9">setPosition</a> (const <a class="el" href="classCEGUI_1_1Vector2.html">Vector2</a> &amp;position)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the two dimensional position of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> in pixels. The origin is at the top-left corner.  <a href="#a321f40993eef7f80c2136410cf2c95d9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#aab85b3a5c8de3fd3c0cda443edd75763">setSize</a> (const <a class="el" href="classCEGUI_1_1Size.html">Size</a> &amp;size)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the size of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> in pixels.  <a href="#aab85b3a5c8de3fd3c0cda443edd75763"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a8afebe600c968f547fe3931a4b2499c1">setRotation</a> (const <a class="el" href="classCEGUI_1_1Vector3.html">Vector3</a> &amp;rotation)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the rotation factors to be used when rendering the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> back onto it's owning <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a>.  <a href="#a8afebe600c968f547fe3931a4b2499c1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a3bfe769ac5cee51cafbdb963a50da811">setPivot</a> (const <a class="el" href="classCEGUI_1_1Vector3.html">Vector3</a> &amp;pivot)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the location of the pivot point around which the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> will be rotated.  <a href="#a3bfe769ac5cee51cafbdb963a50da811"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1Vector2.html">Vector2</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#ae17f91866c364afbb24911ccf08ce57d">getPosition</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the current pixel position of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. The origin is at the top-left corner.  <a href="#ae17f91866c364afbb24911ccf08ce57d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1Size.html">Size</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a39cb67022134914ef139fc4c2c4112f0">getSize</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the current size of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> in pixels.  <a href="#a39cb67022134914ef139fc4c2c4112f0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1Vector3.html">Vector3</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#aaff5ceaaffb1e89cc97e4220d0155648">getRotation</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the current rotations being applied to the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>, in degrees.  <a href="#aaff5ceaaffb1e89cc97e4220d0155648"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1Vector3.html">Vector3</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#ad055080c2b1e77096f4dd4f35cb7bb0c">getPivot</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the rotation pivot point location for the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>.  <a href="#ad055080c2b1e77096f4dd4f35cb7bb0c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1TextureTarget.html">TextureTarget</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#aeaddb0d604c26d080a9d7c125fae8a39">getTextureTarget</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the <a class="el" href="classCEGUI_1_1TextureTarget.html" title="Specialisation of RenderTarget interface that should be used as the base class for RenderTargets that...">TextureTarget</a> object that is the target for content rendered to this RenderingWindows. This is the same object passed into the constructor.  <a href="#aeaddb0d604c26d080a9d7c125fae8a39"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a377428164e6370c668dd372d2a1773ea"></a><!-- doxytag: member="CEGUI::RenderingWindow::getTextureTarget" ref="a377428164e6370c668dd372d2a1773ea" args="()" -->
<a class="el" href="classCEGUI_1_1TextureTarget.html">TextureTarget</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><b>getTextureTarget</b> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a3544ded8846b051a4bef37bd94ad4af9">update</a> (const float elapsed)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Peform time based updated for the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>.  <a href="#a3544ded8846b051a4bef37bd94ad4af9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#ab8b1e83982d3f41857205a8aaf06f2a5">setRenderEffect</a> (<a class="el" href="classCEGUI_1_1RenderEffect.html">RenderEffect</a> *effect)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the <a class="el" href="classCEGUI_1_1RenderEffect.html" title="Interface for objects that hook into RenderingWindow to affect the rendering process, thus allowing various effects to be achieved.">RenderEffect</a> that should be used with the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. This may be 0 to remove a previously set <a class="el" href="classCEGUI_1_1RenderEffect.html" title="Interface for objects that hook into RenderingWindow to affect the rendering process, thus allowing various effects to be achieved.">RenderEffect</a>.  <a href="#ab8b1e83982d3f41857205a8aaf06f2a5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1RenderEffect.html">RenderEffect</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a313dc23d7057cfba13e0230dcbec4908">getRenderEffect</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return a pointer to the <a class="el" href="classCEGUI_1_1RenderEffect.html" title="Interface for objects that hook into RenderingWindow to affect the rendering process, thus allowing various effects to be achieved.">RenderEffect</a> currently being used with the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. A return value of 0 indicates that no <a class="el" href="classCEGUI_1_1RenderEffect.html" title="Interface for objects that hook into RenderingWindow to affect the rendering process, thus allowing various effects to be achieved.">RenderEffect</a> is being used.  <a href="#a313dc23d7057cfba13e0230dcbec4908"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a5dab6b19c098c0efd43a1de62ba79567">realiseGeometry</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">generate geometry to be used when rendering back the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> to it's owning <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a>.  <a href="#a5dab6b19c098c0efd43a1de62ba79567"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#afbbbc0195f8c6e47f8468444bbbb8df8">invalidateGeometry</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Mark the geometry used when rendering the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> back to it's owning <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> as invalid so that it gets regenerated on the next rendering pass.  <a href="#afbbbc0195f8c6e47f8468444bbbb8df8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1RenderingSurface.html">RenderingSurface</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a89d583bd8b72cd8bc0ed4ccd3c831925">getOwner</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> that owns the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. This is also the <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> that will be used when the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> renders back it's cached imagery content.  <a href="#a89d583bd8b72cd8bc0ed4ccd3c831925"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aeda601d442f5ab34ab94f6e481e59c0f"></a><!-- doxytag: member="CEGUI::RenderingWindow::getOwner" ref="aeda601d442f5ab34ab94f6e481e59c0f" args="()" -->
<a class="el" href="classCEGUI_1_1RenderingSurface.html">RenderingSurface</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><b>getOwner</b> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3c89ed5064f682812d0684b1e6e1dcc7"></a><!-- doxytag: member="CEGUI::RenderingWindow::unprojectPoint" ref="a3c89ed5064f682812d0684b1e6e1dcc7" args="(const Vector2 &amp;p_in, Vector2 &amp;p_out)" -->
void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a3c89ed5064f682812d0684b1e6e1dcc7">unprojectPoint</a> (const <a class="el" href="classCEGUI_1_1Vector2.html">Vector2</a> &amp;p_in, <a class="el" href="classCEGUI_1_1Vector2.html">Vector2</a> &amp;p_out)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Fill in <a class="el" href="classCEGUI_1_1Vector2.html" title="Class used as a two dimensional vector (aka a Point)">Vector2</a> object <em>p_out</em> with an unprojected version of the point described by <a class="el" href="classCEGUI_1_1Vector2.html" title="Class used as a two dimensional vector (aka a Point)">Vector2</a> <em>p_in</em>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#ac1eaab08f25c84eb029e212212bc8fbe">draw</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Draw the GeometryBuffers for all rendering queues to the <a class="el" href="classCEGUI_1_1RenderTarget.html" title="Defines interface to some surface that can be rendered to. Concrete instances of objects that impleme...">RenderTarget</a> that this <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> is targetting.  <a href="#ac1eaab08f25c84eb029e212212bc8fbe"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#ab671b91b32d421fc67d0c0cd09236b06">invalidate</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Marks the <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> as invalid, causing the geometry to be rerendered to the <a class="el" href="classCEGUI_1_1RenderTarget.html" title="Defines interface to some surface that can be rendered to. Concrete instances of objects that impleme...">RenderTarget</a> next time draw is called.  <a href="#ab671b91b32d421fc67d0c0cd09236b06"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a751deff547f1d2af888fa0a98f6c7716">isRenderingWindow</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return whether this <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> is actually an instance of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> subclass.  <a href="#a751deff547f1d2af888fa0a98f6c7716"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa329261cd97a0159b7adb43f5f3cd546"></a><!-- doxytag: member="CEGUI::RenderingWindow::realiseGeometry_impl" ref="aa329261cd97a0159b7adb43f5f3cd546" args="()" -->
virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#aa329261cd97a0159b7adb43f5f3cd546">realiseGeometry_impl</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">default generates geometry to draw window as a single quad. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a96c6b75677f8588b74f591dee5570033"></a><!-- doxytag: member="CEGUI::RenderingWindow::setOwner" ref="a96c6b75677f8588b74f591dee5570033" args="(RenderingSurface &amp;owner)" -->
void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a96c6b75677f8588b74f591dee5570033">setOwner</a> (<a class="el" href="classCEGUI_1_1RenderingSurface.html">RenderingSurface</a> &amp;owner)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">set a new owner for this <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> object <br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-attribs"></a>
Protected Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a19b63e1adfba4140cd79acd2150dcf42"></a><!-- doxytag: member="CEGUI::RenderingWindow::d_renderer" ref="a19b63e1adfba4140cd79acd2150dcf42" args="" -->
<a class="el" href="classCEGUI_1_1Renderer.html">Renderer</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a19b63e1adfba4140cd79acd2150dcf42">d_renderer</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">holds ref to renderer <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad620a6825bdd0ad13750d1f3bb3d380c"></a><!-- doxytag: member="CEGUI::RenderingWindow::d_textarget" ref="ad620a6825bdd0ad13750d1f3bb3d380c" args="" -->
<a class="el" href="classCEGUI_1_1TextureTarget.html">TextureTarget</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#ad620a6825bdd0ad13750d1f3bb3d380c">d_textarget</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classCEGUI_1_1TextureTarget.html" title="Specialisation of RenderTarget interface that should be used as the base class for RenderTargets that...">TextureTarget</a> to draw to. Like d_target in base, but avoiding downcasts. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a76d73f1ca0ddbca6bce1e9b130a38b00"></a><!-- doxytag: member="CEGUI::RenderingWindow::d_owner" ref="a76d73f1ca0ddbca6bce1e9b130a38b00" args="" -->
<a class="el" href="classCEGUI_1_1RenderingSurface.html">RenderingSurface</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a76d73f1ca0ddbca6bce1e9b130a38b00">d_owner</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> that owns this object, we render back to this object. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7febdae729d5c790b616de04351c8a97"></a><!-- doxytag: member="CEGUI::RenderingWindow::d_geometry" ref="a7febdae729d5c790b616de04351c8a97" args="" -->
<a class="el" href="classCEGUI_1_1GeometryBuffer.html">GeometryBuffer</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a7febdae729d5c790b616de04351c8a97">d_geometry</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a> that holds geometry for drawing this window. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae7ea01d388fd9a2587f24c7a486fee03"></a><!-- doxytag: member="CEGUI::RenderingWindow::d_geometryValid" ref="ae7ea01d388fd9a2587f24c7a486fee03" args="" -->
bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#ae7ea01d388fd9a2587f24c7a486fee03">d_geometryValid</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">indicates whether data in <a class="el" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a> is up-to-date <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a31162bcf39e3bf2e6262264b71a009f9"></a><!-- doxytag: member="CEGUI::RenderingWindow::d_position" ref="a31162bcf39e3bf2e6262264b71a009f9" args="" -->
<a class="el" href="classCEGUI_1_1Vector2.html">Vector2</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#a31162bcf39e3bf2e6262264b71a009f9">d_position</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Position of this <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ada9fcbbe328d690a360d88c395667c5a"></a><!-- doxytag: member="CEGUI::RenderingWindow::d_size" ref="ada9fcbbe328d690a360d88c395667c5a" args="" -->
<a class="el" href="classCEGUI_1_1Size.html">Size</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#ada9fcbbe328d690a360d88c395667c5a">d_size</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classCEGUI_1_1Size.html" title="Class that holds the size (width &amp; height) of something.">Size</a> of this <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aff88b5117d832280de4288392d8e3e32"></a><!-- doxytag: member="CEGUI::RenderingWindow::d_rotation" ref="aff88b5117d832280de4288392d8e3e32" args="" -->
<a class="el" href="classCEGUI_1_1Vector3.html">Vector3</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#aff88b5117d832280de4288392d8e3e32">d_rotation</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Rotaions for this <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aaa493e3c79792c9545b7189851a62aca"></a><!-- doxytag: member="CEGUI::RenderingWindow::d_pivot" ref="aaa493e3c79792c9545b7189851a62aca" args="" -->
<a class="el" href="classCEGUI_1_1Vector3.html">Vector3</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1RenderingWindow.html#aaa493e3c79792c9545b7189851a62aca">d_pivot</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Pivot point used for the rotation. <br/></td></tr>
<tr><td colspan="2"><h2><a name="friends"></a>
Friends</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac10c702f36c5ef226128859d637a3b3c"></a><!-- doxytag: member="CEGUI::RenderingWindow::RenderingSurface::transferRenderingWindow" ref="ac10c702f36c5ef226128859d637a3b3c" args="(RenderingWindow &amp;)" -->
void&#160;</td><td class="memItemRight" valign="bottom"><b>RenderingSurface::transferRenderingWindow</b> (<a class="el" href="classCEGUI_1_1RenderingWindow.html">RenderingWindow</a> &amp;)</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p><a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> is a <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> that can be "drawn back" onto another <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> and is primarily intended to be used as a kind of cache for rendered imagery. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a0b0a750c6a261ec60a43e397cc480d51"></a><!-- doxytag: member="CEGUI::RenderingWindow::RenderingWindow" ref="a0b0a750c6a261ec60a43e397cc480d51" args="(TextureTarget &amp;target, RenderingSurface &amp;owner)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">CEGUI::RenderingWindow::RenderingWindow </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1TextureTarget.html">TextureTarget</a> &amp;&#160;</td>
          <td class="paramname"><em>target</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1RenderingSurface.html">RenderingSurface</a> &amp;&#160;</td>
          <td class="paramname"><em>owner</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Constructor for <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> objects. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">target</td><td>The <a class="el" href="classCEGUI_1_1TextureTarget.html" title="Specialisation of RenderTarget interface that should be used as the base class for RenderTargets that...">TextureTarget</a> based object that will be used as the target for content rendering done by the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>.</td></tr>
    <tr><td class="paramname">owner</td><td>The <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> object that will be our initial owner. This <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> is also the target where our cached imagery will be rendered back to.</td></tr>
  </table>
  </dd>
</dl>
<dl class="note"><dt><b>Note:</b></dt><dd>The <a class="el" href="classCEGUI_1_1TextureTarget.html" title="Specialisation of RenderTarget interface that should be used as the base class for RenderTargets that...">TextureTarget</a> <em>target</em> remains under it's original ownership, and the <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> <em>owner</em> actually owns <em>this</em> object. </dd></dl>

</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="ac1eaab08f25c84eb029e212212bc8fbe"></a><!-- doxytag: member="CEGUI::RenderingWindow::draw" ref="ac1eaab08f25c84eb029e212212bc8fbe" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::RenderingWindow::draw </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Draw the GeometryBuffers for all rendering queues to the <a class="el" href="classCEGUI_1_1RenderTarget.html" title="Defines interface to some surface that can be rendered to. Concrete instances of objects that impleme...">RenderTarget</a> that this <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> is targetting. </p>
<p>The GeometryBuffers remain in the rendering queues after the draw operation is complete. This allows the next draw operation to occur without needing to requeue all the GeometryBuffers (if for instance the sequence of buffers to be drawn remains unchanged). </p>

<p>Reimplemented from <a class="el" href="classCEGUI_1_1RenderingSurface.html#ac5324bcc28a06a269f0465b99643537f">CEGUI::RenderingSurface</a>.</p>

</div>
</div>
<a class="anchor" id="a89d583bd8b72cd8bc0ed4ccd3c831925"></a><!-- doxytag: member="CEGUI::RenderingWindow::getOwner" ref="a89d583bd8b72cd8bc0ed4ccd3c831925" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1RenderingSurface.html">RenderingSurface</a>&amp; CEGUI::RenderingWindow::getOwner </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> that owns the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. This is also the <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> that will be used when the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> renders back it's cached imagery content. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> object that owns, and is targetted by, the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="ad055080c2b1e77096f4dd4f35cb7bb0c"></a><!-- doxytag: member="CEGUI::RenderingWindow::getPivot" ref="ad055080c2b1e77096f4dd4f35cb7bb0c" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1Vector3.html">Vector3</a>&amp; CEGUI::RenderingWindow::getPivot </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the rotation pivot point location for the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Vector3.html" title="Class used as a three dimensional vector.">Vector3</a> object describing the current location of the pivot point used when rotating the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="ae17f91866c364afbb24911ccf08ce57d"></a><!-- doxytag: member="CEGUI::RenderingWindow::getPosition" ref="ae17f91866c364afbb24911ccf08ce57d" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1Vector2.html">Vector2</a>&amp; CEGUI::RenderingWindow::getPosition </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the current pixel position of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. The origin is at the top-left corner. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Vector2.html" title="Class used as a two dimensional vector (aka a Point)">Vector2</a> object describing the pixel position of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>.</dd></dl>
<dl class="note"><dt><b>Note:</b></dt><dd>This position is an absolute pixel location relative to the screen or other root surface. It is <em>not</em> relative to the owner of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a313dc23d7057cfba13e0230dcbec4908"></a><!-- doxytag: member="CEGUI::RenderingWindow::getRenderEffect" ref="a313dc23d7057cfba13e0230dcbec4908" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1RenderEffect.html">RenderEffect</a>* CEGUI::RenderingWindow::getRenderEffect </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return a pointer to the <a class="el" href="classCEGUI_1_1RenderEffect.html" title="Interface for objects that hook into RenderingWindow to affect the rendering process, thus allowing various effects to be achieved.">RenderEffect</a> currently being used with the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. A return value of 0 indicates that no <a class="el" href="classCEGUI_1_1RenderEffect.html" title="Interface for objects that hook into RenderingWindow to affect the rendering process, thus allowing various effects to be achieved.">RenderEffect</a> is being used. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to the <a class="el" href="classCEGUI_1_1RenderEffect.html" title="Interface for objects that hook into RenderingWindow to affect the rendering process, thus allowing various effects to be achieved.">RenderEffect</a> used with this <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>, or 0 for none. </dd></dl>

</div>
</div>
<a class="anchor" id="aaff5ceaaffb1e89cc97e4220d0155648"></a><!-- doxytag: member="CEGUI::RenderingWindow::getRotation" ref="aaff5ceaaffb1e89cc97e4220d0155648" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1Vector3.html">Vector3</a>&amp; CEGUI::RenderingWindow::getRotation </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the current rotations being applied to the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>, in degrees. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Vector3.html" title="Class used as a three dimensional vector.">Vector3</a> object describing the rotations for the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a39cb67022134914ef139fc4c2c4112f0"></a><!-- doxytag: member="CEGUI::RenderingWindow::getSize" ref="a39cb67022134914ef139fc4c2c4112f0" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1Size.html">Size</a>&amp; CEGUI::RenderingWindow::getSize </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the current size of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> in pixels. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1Size.html" title="Class that holds the size (width &amp; height) of something.">Size</a> object describing the current pixel size of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="aeaddb0d604c26d080a9d7c125fae8a39"></a><!-- doxytag: member="CEGUI::RenderingWindow::getTextureTarget" ref="aeaddb0d604c26d080a9d7c125fae8a39" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1TextureTarget.html">TextureTarget</a>&amp; CEGUI::RenderingWindow::getTextureTarget </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the <a class="el" href="classCEGUI_1_1TextureTarget.html" title="Specialisation of RenderTarget interface that should be used as the base class for RenderTargets that...">TextureTarget</a> object that is the target for content rendered to this RenderingWindows. This is the same object passed into the constructor. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The <a class="el" href="classCEGUI_1_1TextureTarget.html" title="Specialisation of RenderTarget interface that should be used as the base class for RenderTargets that...">TextureTarget</a> object that receives the rendered output resulting from geometry queued to this <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="ab671b91b32d421fc67d0c0cd09236b06"></a><!-- doxytag: member="CEGUI::RenderingWindow::invalidate" ref="ab671b91b32d421fc67d0c0cd09236b06" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::RenderingWindow::invalidate </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Marks the <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> as invalid, causing the geometry to be rerendered to the <a class="el" href="classCEGUI_1_1RenderTarget.html" title="Defines interface to some surface that can be rendered to. Concrete instances of objects that impleme...">RenderTarget</a> next time draw is called. </p>
<p>Note that some surface types can never be in a 'valid' state and so rerendering occurs whenever draw is called. This function mainly exists as a means to hint to other surface types - those that physically cache the rendered output - that geometry content has changed and the cached imagery should be cleared and redrawn. </p>

<p>Reimplemented from <a class="el" href="classCEGUI_1_1RenderingSurface.html#a6fd2ace1ea7f7213467edcc90d547cb7">CEGUI::RenderingSurface</a>.</p>

</div>
</div>
<a class="anchor" id="afbbbc0195f8c6e47f8468444bbbb8df8"></a><!-- doxytag: member="CEGUI::RenderingWindow::invalidateGeometry" ref="afbbbc0195f8c6e47f8468444bbbb8df8" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::RenderingWindow::invalidateGeometry </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Mark the geometry used when rendering the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> back to it's owning <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> as invalid so that it gets regenerated on the next rendering pass. </p>
<p>This is separate from the main <a class="el" href="classCEGUI_1_1RenderingWindow.html#ab671b91b32d421fc67d0c0cd09236b06" title="Marks the RenderingSurface as invalid, causing the geometry to be rerendered to the RenderTarget next...">invalidate()</a> function because in most cases invalidating the cached imagery will not require the potentially expensive regeneration of the geometry for the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> itself. </p>

</div>
</div>
<a class="anchor" id="a751deff547f1d2af888fa0a98f6c7716"></a><!-- doxytag: member="CEGUI::RenderingWindow::isRenderingWindow" ref="a751deff547f1d2af888fa0a98f6c7716" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool CEGUI::RenderingWindow::isRenderingWindow </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return whether this <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> is actually an instance of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> subclass. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><ul>
<li>true to indicate the <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> is a <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> instance.</li>
<li>false to indicate the <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> is not a <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. </li>
</ul>
</dd></dl>

<p>Reimplemented from <a class="el" href="classCEGUI_1_1RenderingSurface.html#a56017aaebfc25ebb1ea0365cf4abed81">CEGUI::RenderingSurface</a>.</p>

</div>
</div>
<a class="anchor" id="a5dab6b19c098c0efd43a1de62ba79567"></a><!-- doxytag: member="CEGUI::RenderingWindow::realiseGeometry" ref="a5dab6b19c098c0efd43a1de62ba79567" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::RenderingWindow::realiseGeometry </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>generate geometry to be used when rendering back the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> to it's owning <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a>. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>In normal usage you should never have to call this directly. There may be certain cases where it might be useful to call this when using the <a class="el" href="classCEGUI_1_1RenderEffect.html" title="Interface for objects that hook into RenderingWindow to affect the rendering process, thus allowing various effects to be achieved.">RenderEffect</a> system. </dd></dl>

</div>
</div>
<a class="anchor" id="a054bc0c9f16c69e9ec7d8c167c637737"></a><!-- doxytag: member="CEGUI::RenderingWindow::setClippingRegion" ref="a054bc0c9f16c69e9ec7d8c167c637737" args="(const Rect &amp;region)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::RenderingWindow::setClippingRegion </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1Rect.html">Rect</a> &amp;&#160;</td>
          <td class="paramname"><em>region</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the clipping region that will be used when rendering the imagery for this <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> back onto the <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a> that owns it. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>This is not the clipping region used when rendering the queued geometry <em>onto</em> the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>, that still uses whatever regions are set on the queued <a class="el" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a> objects.</dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">region</td><td><a class="el" href="classCEGUI_1_1Rect.html" title="Class encapsulating operations on a Rectangle.">Rect</a> object describing a rectangular clipping region.</td></tr>
  </table>
  </dd>
</dl>
<dl class="note"><dt><b>Note:</b></dt><dd>The region should be described as absolute pixel locations relative to the screen or other root surface. The region should <em>not</em> be described relative to the owner of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a3bfe769ac5cee51cafbdb963a50da811"></a><!-- doxytag: member="CEGUI::RenderingWindow::setPivot" ref="a3bfe769ac5cee51cafbdb963a50da811" args="(const Vector3 &amp;pivot)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::RenderingWindow::setPivot </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1Vector3.html">Vector3</a> &amp;&#160;</td>
          <td class="paramname"><em>pivot</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the location of the pivot point around which the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> will be rotated. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">pivot</td><td><a class="el" href="classCEGUI_1_1Vector3.html" title="Class used as a three dimensional vector.">Vector3</a> describing the three dimensional point around which the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> will be rotated. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a321f40993eef7f80c2136410cf2c95d9"></a><!-- doxytag: member="CEGUI::RenderingWindow::setPosition" ref="a321f40993eef7f80c2136410cf2c95d9" args="(const Vector2 &amp;position)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::RenderingWindow::setPosition </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1Vector2.html">Vector2</a> &amp;&#160;</td>
          <td class="paramname"><em>position</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the two dimensional position of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> in pixels. The origin is at the top-left corner. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">position</td><td><a class="el" href="classCEGUI_1_1Vector2.html" title="Class used as a two dimensional vector (aka a Point)">Vector2</a> object describing the desired location of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>, in pixels.</td></tr>
  </table>
  </dd>
</dl>
<dl class="note"><dt><b>Note:</b></dt><dd>This position is an absolute pixel location relative to the screen or other root surface. It is <em>not</em> relative to the owner of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="ab8b1e83982d3f41857205a8aaf06f2a5"></a><!-- doxytag: member="CEGUI::RenderingWindow::setRenderEffect" ref="ab8b1e83982d3f41857205a8aaf06f2a5" args="(RenderEffect *effect)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::RenderingWindow::setRenderEffect </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1RenderEffect.html">RenderEffect</a> *&#160;</td>
          <td class="paramname"><em>effect</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the <a class="el" href="classCEGUI_1_1RenderEffect.html" title="Interface for objects that hook into RenderingWindow to affect the rendering process, thus allowing various effects to be achieved.">RenderEffect</a> that should be used with the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. This may be 0 to remove a previously set <a class="el" href="classCEGUI_1_1RenderEffect.html" title="Interface for objects that hook into RenderingWindow to affect the rendering process, thus allowing various effects to be achieved.">RenderEffect</a>. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>Ownership of the <a class="el" href="classCEGUI_1_1RenderEffect.html" title="Interface for objects that hook into RenderingWindow to affect the rendering process, thus allowing various effects to be achieved.">RenderEffect</a> does not change; the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> will not delete a <a class="el" href="classCEGUI_1_1RenderEffect.html" title="Interface for objects that hook into RenderingWindow to affect the rendering process, thus allowing various effects to be achieved.">RenderEffect</a> assigned to it when the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> is destroyed. </dd></dl>

</div>
</div>
<a class="anchor" id="a8afebe600c968f547fe3931a4b2499c1"></a><!-- doxytag: member="CEGUI::RenderingWindow::setRotation" ref="a8afebe600c968f547fe3931a4b2499c1" args="(const Vector3 &amp;rotation)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::RenderingWindow::setRotation </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1Vector3.html">Vector3</a> &amp;&#160;</td>
          <td class="paramname"><em>rotation</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the rotation factors to be used when rendering the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> back onto it's owning <a class="el" href="classCEGUI_1_1RenderingSurface.html" title="Class that represents a surface that can have geometry based imagery drawn to it.">RenderingSurface</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">rotation</td><td><a class="el" href="classCEGUI_1_1Vector3.html" title="Class used as a three dimensional vector.">Vector3</a> object describing the rotaions to be used. Values are in degrees. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aab85b3a5c8de3fd3c0cda443edd75763"></a><!-- doxytag: member="CEGUI::RenderingWindow::setSize" ref="aab85b3a5c8de3fd3c0cda443edd75763" args="(const Size &amp;size)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::RenderingWindow::setSize </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1Size.html">Size</a> &amp;&#160;</td>
          <td class="paramname"><em>size</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the size of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> in pixels. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">size</td><td><a class="el" href="classCEGUI_1_1Size.html" title="Class that holds the size (width &amp; height) of something.">Size</a> object that describes the desired size of the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>, in pixels. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a3544ded8846b051a4bef37bd94ad4af9"></a><!-- doxytag: member="CEGUI::RenderingWindow::update" ref="a3544ded8846b051a4bef37bd94ad4af9" args="(const float elapsed)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::RenderingWindow::update </td>
          <td>(</td>
          <td class="paramtype">const float&#160;</td>
          <td class="paramname"><em>elapsed</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Peform time based updated for the <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a>. </p>
<dl class="note"><dt><b>Note:</b></dt><dd>Currently this really only has meaning for <a class="el" href="classCEGUI_1_1RenderingWindow.html" title="RenderingWindow is a RenderingSurface that can be &quot;drawn back&quot; onto another RenderingSurface and is p...">RenderingWindow</a> objects that have <a class="el" href="classCEGUI_1_1RenderEffect.html" title="Interface for objects that hook into RenderingWindow to affect the rendering process, thus allowing various effects to be achieved.">RenderEffect</a> objects set. Though this may not always be the case.</dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">elapsed</td><td>float value describing the number of seconds that have passed since the previous call to update. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:41 for Crazy Eddies GUI System by&#160;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>