File: classCEGUI_1_1DirectFBRenderer.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 (595 lines) | stat: -rw-r--r-- 55,680 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
<!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::DirectFBRenderer 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_1DirectFBRenderer.html">DirectFBRenderer</a>      </li>
    </ul>
  </div>
</div>
<div class="header">
  <div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pub-static-methods">Static Public Member Functions</a> &#124;
<a href="#pro-types">Protected Types</a> &#124;
<a href="#pro-methods">Protected Member Functions</a> &#124;
<a href="#pro-attribs">Protected Attributes</a> &#124;
<a href="#pro-static-attribs">Static Protected Attributes</a>  </div>
  <div class="headertitle">
<div class="title">CEGUI::DirectFBRenderer Class Reference</div>  </div>
</div>
<div class="contents">
<!-- doxytag: class="CEGUI::DirectFBRenderer" --><!-- doxytag: inherits="CEGUI::Renderer" -->
<p>Implementation of <a class="el" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer objects.">CEGUI::Renderer</a> interface using DirectFB.  
 <a href="classCEGUI_1_1DirectFBRenderer.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::DirectFBRenderer:</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_1DirectFBRenderer__inherit__graph.gif" border="0" usemap="#CEGUI_1_1DirectFBRenderer_inherit__map" alt="Inheritance graph"/></div>
<map name="CEGUI_1_1DirectFBRenderer_inherit__map" id="CEGUI_1_1DirectFBRenderer_inherit__map">
<area shape="rect" id="node2" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer 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::DirectFBRenderer:</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_1DirectFBRenderer__coll__graph.gif" border="0" usemap="#CEGUI_1_1DirectFBRenderer_coll__map" alt="Collaboration graph"/></div>
<map name="CEGUI_1_1DirectFBRenderer_coll__map" id="CEGUI_1_1DirectFBRenderer_coll__map">
<area shape="rect" id="node2" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer objects." alt="" coords="5,5,131,35"/><area shape="rect" id="node4" href="classCEGUI_1_1Size.html" title="Class that holds the size (width &amp; height) of something." alt="" coords="155,5,253,35"/><area shape="rect" id="node6" href="classCEGUI_1_1RenderingRoot.html" title="CEGUI::RenderingRoot" alt="" coords="277,5,437,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="classCEGUI_1_1DirectFBRenderer-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"><a class="anchor" id="a87cabdbd08a2218a623299219eb37740"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::getTargetSurface" ref="a87cabdbd08a2218a623299219eb37740" args="() const " -->
IDirectFBSurface &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a87cabdbd08a2218a623299219eb37740">getTargetSurface</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the current target DirectFB surface. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a034463cb4601dcb557c6ee4824379acf"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::setTargetSurface" ref="a034463cb4601dcb557c6ee4824379acf" args="(IDirectFBSurface &amp;surface)" -->
void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a034463cb4601dcb557c6ee4824379acf">setTargetSurface</a> (IDirectFBSurface &amp;surface)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the target DirectFB surface. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1RenderingRoot.html">RenderingRoot</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a61c93bed1a3ff6a04248ef06e4ff20d2">getDefaultRenderingRoot</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the default rendering root for the renderer. The default rendering root is typically a <a class="el" href="classCEGUI_1_1RenderingRoot.html">RenderingRoot</a> that targets the entire screen (or rendering window).  <a href="#a61c93bed1a3ff6a04248ef06e4ff20d2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1GeometryBuffer.html">GeometryBuffer</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a1808c6ce427721e5f4bc3b59ae8234ec">createGeometryBuffer</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create a new <a class="el" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a> and return a reference to it. You should remove the <a class="el" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a> from any RenderQueues and call destroyGeometryBuffer when you want to destroy the <a class="el" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a>.  <a href="#a1808c6ce427721e5f4bc3b59ae8234ec"></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_1DirectFBRenderer.html#ae05ba4f56fe0f55809e8748615e903e3">destroyGeometryBuffer</a> (const <a class="el" href="classCEGUI_1_1GeometryBuffer.html">GeometryBuffer</a> &amp;buffer)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Destroy a <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 was returned when calling the createGeometryBuffer function. Before destroying any <a class="el" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a> you should ensure that it has been removed from any <a class="el" href="classCEGUI_1_1RenderQueue.html" title="Class that represents a queue of GeometryBuffer objects to be rendered.">RenderQueue</a> that was using it.  <a href="#ae05ba4f56fe0f55809e8748615e903e3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0c321faf03ae6b0f406220cb0bfeb08c"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::destroyAllGeometryBuffers" ref="a0c321faf03ae6b0f406220cb0bfeb08c" args="()" -->
void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a0c321faf03ae6b0f406220cb0bfeb08c">destroyAllGeometryBuffers</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Destroy all <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 created by this <a class="el" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer objects.">Renderer</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1TextureTarget.html">TextureTarget</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a90c221c9f1bfc54eaf6ffba497aef320">createTextureTarget</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create a <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> that can be used to cache imagery; this is a <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 does not lose it's content from one frame to another.  <a href="#a90c221c9f1bfc54eaf6ffba497aef320"></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_1DirectFBRenderer.html#a4b74cafdd254bac68016e58cca45c29b">destroyTextureTarget</a> (<a class="el" href="classCEGUI_1_1TextureTarget.html">TextureTarget</a> *target)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Function that cleans up <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> objects created with the createTextureTarget function.  <a href="#a4b74cafdd254bac68016e58cca45c29b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a312b68614f3468a54d4848a45c414c9a"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::destroyAllTextureTargets" ref="a312b68614f3468a54d4848a45c414c9a" args="()" -->
void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a312b68614f3468a54d4848a45c414c9a">destroyAllTextureTargets</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Destory all <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> objects created by this <a class="el" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer objects.">Renderer</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Texture.html">Texture</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a8f9fb7024b62027bb0c72d39fd572428">createTexture</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create a 'null' <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object.  <a href="#a8f9fb7024b62027bb0c72d39fd572428"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Texture.html">Texture</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a2562a71546e3ce74f9032329c14c3c0d">createTexture</a> (const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;filename, const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;resourceGroup)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create a <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object using the given image file.  <a href="#a2562a71546e3ce74f9032329c14c3c0d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classCEGUI_1_1Texture.html">Texture</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#ad564f51fdc4b953b4de48dda207bff81">createTexture</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">Create a <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object with the given pixel dimensions as specified by <em>size</em>.  <a href="#ad564f51fdc4b953b4de48dda207bff81"></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_1DirectFBRenderer.html#a60618a45d6f97bb665aafb1c84c8d9c1">destroyTexture</a> (<a class="el" href="classCEGUI_1_1Texture.html">Texture</a> &amp;texture)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Destroy a <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object that was previously created by calling the createTexture functions.  <a href="#a60618a45d6f97bb665aafb1c84c8d9c1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6aa4dc60cd23a540a78aff63f1ca8e34"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::destroyAllTextures" ref="a6aa4dc60cd23a540a78aff63f1ca8e34" args="()" -->
void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a6aa4dc60cd23a540a78aff63f1ca8e34">destroyAllTextures</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Destroy all <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> objects created by this <a class="el" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer objects.">Renderer</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa40390a53a47513997ceb27b90eb640d"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::beginRendering" ref="aa40390a53a47513997ceb27b90eb640d" args="()" -->
void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#aa40390a53a47513997ceb27b90eb640d">beginRendering</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Perform any operations required to put the system into a state ready for rendering operations to begin. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="add4f16caea0d3b50b73b588981411b73"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::endRendering" ref="add4f16caea0d3b50b73b588981411b73" args="()" -->
void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#add4f16caea0d3b50b73b588981411b73">endRendering</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Perform any operations required to finalise rendering. <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_1DirectFBRenderer.html#a94532b0ee109e167e39d28fb9a60c487">setDisplaySize</a> (const <a class="el" href="classCEGUI_1_1Size.html">Size</a> &amp;sz)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the size of the display or host window in pixels for this <a class="el" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer objects.">Renderer</a> object.  <a href="#a94532b0ee109e167e39d28fb9a60c487"></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_1DirectFBRenderer.html#a76412227740624b937afda1e515a6045">getDisplaySize</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the size of the display or host window in pixels.  <a href="#a76412227740624b937afda1e515a6045"></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_1DirectFBRenderer.html#ac3cca903f85f9a6821e2e6e5256639c0">getDisplayDPI</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the resolution of the display or host window in dots per inch.  <a href="#ac3cca903f85f9a6821e2e6e5256639c0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">uint&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a9acf7ee668343b63d1fed71e6bb92b04">getMaxTextureSize</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the pixel size of the maximum supported texture.  <a href="#a9acf7ee668343b63d1fed71e6bb92b04"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a6b9a4327db60fd3c66f2620f4630eb14">getIdentifierString</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Return identification string for the renderer module.  <a href="#a6b9a4327db60fd3c66f2620f4630eb14"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a84f39250326c9d8cea1d2c3aec6e79ca"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::create" ref="a84f39250326c9d8cea1d2c3aec6e79ca" args="(IDirectFB &amp;directfb, IDirectFBSurface &amp;surface)" -->
static <a class="el" href="classCEGUI_1_1DirectFBRenderer.html">DirectFBRenderer</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a84f39250326c9d8cea1d2c3aec6e79ca">create</a> (IDirectFB &amp;directfb, IDirectFBSurface &amp;surface)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">create a <a class="el" href="classCEGUI_1_1DirectFBRenderer.html" title="Implementation of CEGUI::Renderer interface using DirectFB.">DirectFBRenderer</a> object. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aee311e32e96e97255c2fcf5edf4a68d0"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::destroy" ref="aee311e32e96e97255c2fcf5edf4a68d0" args="(DirectFBRenderer &amp;renderer)" -->
static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#aee311e32e96e97255c2fcf5edf4a68d0">destroy</a> (<a class="el" href="classCEGUI_1_1DirectFBRenderer.html">DirectFBRenderer</a> &amp;renderer)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">destroy a <a class="el" href="classCEGUI_1_1DirectFBRenderer.html" title="Implementation of CEGUI::Renderer interface using DirectFB.">DirectFBRenderer</a> object created by the <em>create</em> call. <br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-types"></a>
Protected Types</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5bde48c27c2bbf74933e726c897f50a8"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::TextureTargetList" ref="a5bde48c27c2bbf74933e726c897f50a8" args="" -->
typedef std::vector<br class="typebreak"/>
&lt; <a class="el" href="classCEGUI_1_1TextureTarget.html">TextureTarget</a> * &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a5bde48c27c2bbf74933e726c897f50a8">TextureTargetList</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">container type used to hold TextureTargets we create. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5ec5f4cd99ec26d9ecd4344f800ec0f8"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::GeometryBufferList" ref="a5ec5f4cd99ec26d9ecd4344f800ec0f8" args="" -->
typedef std::vector<br class="typebreak"/>
&lt; <a class="el" href="classCEGUI_1_1DirectFBGeometryBuffer.html">DirectFBGeometryBuffer</a> * &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a5ec5f4cd99ec26d9ecd4344f800ec0f8">GeometryBufferList</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">container type used to hold GeometryBuffers we create. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aaa67395b8808aac16d94e73deeb4a09d"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::TextureList" ref="aaa67395b8808aac16d94e73deeb4a09d" args="" -->
typedef std::vector<br class="typebreak"/>
&lt; <a class="el" href="classCEGUI_1_1DirectFBTexture.html">DirectFBTexture</a> * &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#aaa67395b8808aac16d94e73deeb4a09d">TextureList</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">container type used to hold Textures we create. <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="abf90d37ce6c0a9f2df8907c7d9e27813"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::DirectFBRenderer" ref="abf90d37ce6c0a9f2df8907c7d9e27813" args="(IDirectFB &amp;directfb, IDirectFBSurface &amp;surface)" -->
&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#abf90d37ce6c0a9f2df8907c7d9e27813">DirectFBRenderer</a> (IDirectFB &amp;directfb, IDirectFBSurface &amp;surface)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a054d6707994610d9e256034bc28a2c2a"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::~DirectFBRenderer" ref="a054d6707994610d9e256034bc28a2c2a" args="()" -->
&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a054d6707994610d9e256034bc28a2c2a">~DirectFBRenderer</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Destructor. <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="a47191eebe958e857f33dabff5fbf9f26"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::d_directfb" ref="a47191eebe958e857f33dabff5fbf9f26" args="" -->
IDirectFB &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a47191eebe958e857f33dabff5fbf9f26">d_directfb</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">DirectFB interface we were given when constructed. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1f6bd5ff83c041ad2489b039a3607031"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::d_rootSurface" ref="a1f6bd5ff83c041ad2489b039a3607031" args="" -->
IDirectFBSurface &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a1f6bd5ff83c041ad2489b039a3607031">d_rootSurface</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The DirectFB surface to be used as the default root target. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4cbd59c55a6eb702a617963d99bba3a8"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::d_targetSurface" ref="a4cbd59c55a6eb702a617963d99bba3a8" args="" -->
IDirectFBSurface *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a4cbd59c55a6eb702a617963d99bba3a8">d_targetSurface</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The current target DirectFB surface. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a54a4ba4d45a27d14204a1f0a399a68af"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::d_displaySize" ref="a54a4ba4d45a27d14204a1f0a399a68af" args="" -->
<a class="el" href="classCEGUI_1_1Size.html">Size</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a54a4ba4d45a27d14204a1f0a399a68af">d_displaySize</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">What the renderer considers to be the current display size. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a85a69bbacbc074d54b32aed72550fbe5"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::d_displayDPI" ref="a85a69bbacbc074d54b32aed72550fbe5" args="" -->
<a class="el" href="classCEGUI_1_1Vector2.html">Vector2</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a85a69bbacbc074d54b32aed72550fbe5">d_displayDPI</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">What the renderer considers to be the current display DPI resolution. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a62049e1bc9b152cbde5050bfb0642c74"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::d_defaultTarget" ref="a62049e1bc9b152cbde5050bfb0642c74" args="" -->
<a class="el" href="classCEGUI_1_1RenderTarget.html">RenderTarget</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a62049e1bc9b152cbde5050bfb0642c74">d_defaultTarget</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The default <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> (used by d_defaultRoot) <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0383c8afbf2c3e47c5dc17e9d13e414c"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::d_defaultRoot" ref="a0383c8afbf2c3e47c5dc17e9d13e414c" args="" -->
<a class="el" href="classCEGUI_1_1RenderingRoot.html">RenderingRoot</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a0383c8afbf2c3e47c5dc17e9d13e414c">d_defaultRoot</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The default rendering root object. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac4c253f818a5a4080a9de486efdfb894"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::d_textureTargets" ref="ac4c253f818a5a4080a9de486efdfb894" args="" -->
<a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a5bde48c27c2bbf74933e726c897f50a8">TextureTargetList</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#ac4c253f818a5a4080a9de486efdfb894">d_textureTargets</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Container used to track texture targets. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a18fe6c2c99273c194e2652d72f69e455"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::d_geometryBuffers" ref="a18fe6c2c99273c194e2652d72f69e455" args="" -->
<a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a5ec5f4cd99ec26d9ecd4344f800ec0f8">GeometryBufferList</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a18fe6c2c99273c194e2652d72f69e455">d_geometryBuffers</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Container used to track geometry buffers. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9c98ae8b509a33e25437d53562130e6c"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::d_textures" ref="a9c98ae8b509a33e25437d53562130e6c" args="" -->
<a class="el" href="classCEGUI_1_1DirectFBRenderer.html#aaa67395b8808aac16d94e73deeb4a09d">TextureList</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#a9c98ae8b509a33e25437d53562130e6c">d_textures</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Container used to track textures. <br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-static-attribs"></a>
Static Protected Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa8629f1a1dd35bbb8db8d3ac59ab5b31"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::d_rendererID" ref="aa8629f1a1dd35bbb8db8d3ac59ab5b31" args="" -->
static <a class="el" href="classCEGUI_1_1String.html">String</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCEGUI_1_1DirectFBRenderer.html#aa8629f1a1dd35bbb8db8d3ac59ab5b31">d_rendererID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> holding the renderer identification text. <br/></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>Implementation of <a class="el" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer objects.">CEGUI::Renderer</a> interface using DirectFB. </p>
</div><hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a1808c6ce427721e5f4bc3b59ae8234ec"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::createGeometryBuffer" ref="a1808c6ce427721e5f4bc3b59ae8234ec" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1GeometryBuffer.html">GeometryBuffer</a>&amp; CEGUI::DirectFBRenderer::createGeometryBuffer </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Create a new <a class="el" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a> and return a reference to it. You should remove the <a class="el" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a> from any RenderQueues and call destroyGeometryBuffer when you want to destroy the <a class="el" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a> object. </dd></dl>

<p>Implements <a class="el" href="classCEGUI_1_1Renderer.html#a681976af0bc86c5f18d471324837fa89">CEGUI::Renderer</a>.</p>

</div>
</div>
<a class="anchor" id="a8f9fb7024b62027bb0c72d39fd572428"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::createTexture" ref="a8f9fb7024b62027bb0c72d39fd572428" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1Texture.html">Texture</a>&amp; CEGUI::DirectFBRenderer::createTexture </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Create a 'null' <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A newly created <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object. The returned <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object has no size or imagery associated with it. </dd></dl>

<p>Implements <a class="el" href="classCEGUI_1_1Renderer.html#a70a7afa2b1a47cee8a3239883044e42c">CEGUI::Renderer</a>.</p>

</div>
</div>
<a class="anchor" id="a2562a71546e3ce74f9032329c14c3c0d"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::createTexture" ref="a2562a71546e3ce74f9032329c14c3c0d" args="(const String &amp;filename, const String &amp;resourceGroup)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1Texture.html">Texture</a>&amp; CEGUI::DirectFBRenderer::createTexture </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>filename</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1String.html">String</a> &amp;&#160;</td>
          <td class="paramname"><em>resourceGroup</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Create a <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object using the given image file. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">filename</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object that specifies the path and filename of the image file to use when creating the texture.</td></tr>
    <tr><td class="paramname">resourceGroup</td><td><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> objet that specifies the resource group identifier to be passed to the resource provider when loading the texture file <em>filename</em>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A newly created <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object. The initial content of the texture memory is the requested image file.</dd></dl>
<dl class="note"><dt><b>Note:</b></dt><dd>Due to possible limitations of the underlying hardware, API or engine, the final size of the texture may not match the size of the loaded file. You can check the ultimate sizes by querying the <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object after creation. </dd></dl>

<p>Implements <a class="el" href="classCEGUI_1_1Renderer.html#a3ff8322cddfcdfba8d26a109772979cb">CEGUI::Renderer</a>.</p>

</div>
</div>
<a class="anchor" id="ad564f51fdc4b953b4de48dda207bff81"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::createTexture" ref="ad564f51fdc4b953b4de48dda207bff81" args="(const Size &amp;size)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1Texture.html">Texture</a>&amp; CEGUI::DirectFBRenderer::createTexture </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><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Create a <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object with the given pixel dimensions as specified by <em>size</em>. </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 texture size.</td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A newly created <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object. The initial contents of the texture memory is undefined.</dd></dl>
<dl class="note"><dt><b>Note:</b></dt><dd>Due to possible limitations of the underlying hardware, API or engine, the final size of the texture may not match the requested size. You can check the ultimate sizes by querying the <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object after creation. </dd></dl>

<p>Implements <a class="el" href="classCEGUI_1_1Renderer.html#a2125c8ac401f9ae7c87a85ccd3807222">CEGUI::Renderer</a>.</p>

</div>
</div>
<a class="anchor" id="a90c221c9f1bfc54eaf6ffba497aef320"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::createTextureTarget" ref="a90c221c9f1bfc54eaf6ffba497aef320" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1TextureTarget.html">TextureTarget</a>* CEGUI::DirectFBRenderer::createTextureTarget </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Create a <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> that can be used to cache imagery; this is a <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 does not lose it's content from one frame to another. </p>
<p>If the renderer is unable to offer such a thing, 0 should be returned.</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>Pointer to a <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 suitable for caching imagery, or 0 if the renderer is unable to offer such a thing. </dd></dl>

<p>Implements <a class="el" href="classCEGUI_1_1Renderer.html#a19ae724f3d4c2da8bdbcaba4cb8b22e1">CEGUI::Renderer</a>.</p>

</div>
</div>
<a class="anchor" id="ae05ba4f56fe0f55809e8748615e903e3"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::destroyGeometryBuffer" ref="ae05ba4f56fe0f55809e8748615e903e3" args="(const GeometryBuffer &amp;buffer)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::DirectFBRenderer::destroyGeometryBuffer </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classCEGUI_1_1GeometryBuffer.html">GeometryBuffer</a> &amp;&#160;</td>
          <td class="paramname"><em>buffer</em></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Destroy a <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 was returned when calling the createGeometryBuffer function. Before destroying any <a class="el" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a> you should ensure that it has been removed from any <a class="el" href="classCEGUI_1_1RenderQueue.html" title="Class that represents a queue of GeometryBuffer objects to be rendered.">RenderQueue</a> that was using it. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">buffer</td><td>The <a class="el" href="classCEGUI_1_1GeometryBuffer.html" title="Abstract class defining the interface for objects that buffer geometry for later rendering.">GeometryBuffer</a> object to be destroyed. </td></tr>
  </table>
  </dd>
</dl>

<p>Implements <a class="el" href="classCEGUI_1_1Renderer.html#a5f450c0981829896b211501af95f8ecf">CEGUI::Renderer</a>.</p>

</div>
</div>
<a class="anchor" id="a60618a45d6f97bb665aafb1c84c8d9c1"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::destroyTexture" ref="a60618a45d6f97bb665aafb1c84c8d9c1" args="(Texture &amp;texture)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::DirectFBRenderer::destroyTexture </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1Texture.html">Texture</a> &amp;&#160;</td>
          <td class="paramname"><em>texture</em></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Destroy a <a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object that was previously created by calling the createTexture functions. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">texture</td><td><a class="el" href="classCEGUI_1_1Texture.html" title="Abstract base class specifying the required interface for Texture objects.">Texture</a> object to be destroyed. </td></tr>
  </table>
  </dd>
</dl>

<p>Implements <a class="el" href="classCEGUI_1_1Renderer.html#a7c204e7aba8bbf01b247e9c9b6b5ffb5">CEGUI::Renderer</a>.</p>

</div>
</div>
<a class="anchor" id="a4b74cafdd254bac68016e58cca45c29b"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::destroyTextureTarget" ref="a4b74cafdd254bac68016e58cca45c29b" args="(TextureTarget *target)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::DirectFBRenderer::destroyTextureTarget </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classCEGUI_1_1TextureTarget.html">TextureTarget</a> *&#160;</td>
          <td class="paramname"><em>target</em></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Function that cleans up <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> objects created with the createTextureTarget function. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table class="params">
    <tr><td class="paramname">target</td><td>A pointer to a <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 was previously returned from a call to createTextureTarget. </td></tr>
  </table>
  </dd>
</dl>

<p>Implements <a class="el" href="classCEGUI_1_1Renderer.html#afda7da404865481200da3611b0289f46">CEGUI::Renderer</a>.</p>

</div>
</div>
<a class="anchor" id="a61c93bed1a3ff6a04248ef06e4ff20d2"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::getDefaultRenderingRoot" ref="a61c93bed1a3ff6a04248ef06e4ff20d2" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classCEGUI_1_1RenderingRoot.html">RenderingRoot</a>&amp; CEGUI::DirectFBRenderer::getDefaultRenderingRoot </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the default rendering root for the renderer. The default rendering root is typically a <a class="el" href="classCEGUI_1_1RenderingRoot.html">RenderingRoot</a> that targets the entire screen (or rendering window). </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1RenderingRoot.html">RenderingRoot</a> object that is the default <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> provided by the <a class="el" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer objects.">Renderer</a>. </dd></dl>

<p>Implements <a class="el" href="classCEGUI_1_1Renderer.html#a5a0ad73b6f37ddca022598ec27fe96c1">CEGUI::Renderer</a>.</p>

</div>
</div>
<a class="anchor" id="ac3cca903f85f9a6821e2e6e5256639c0"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::getDisplayDPI" ref="ac3cca903f85f9a6821e2e6e5256639c0" 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::DirectFBRenderer::getDisplayDPI </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the resolution of the display or host window in dots per inch. </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 that describes the resolution of the display or host window in DPI. </dd></dl>

<p>Implements <a class="el" href="classCEGUI_1_1Renderer.html#abafbc484a8ef468970d801acc4094175">CEGUI::Renderer</a>.</p>

</div>
</div>
<a class="anchor" id="a76412227740624b937afda1e515a6045"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::getDisplaySize" ref="a76412227740624b937afda1e515a6045" 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::DirectFBRenderer::getDisplaySize </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return the size of the display or host window 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 pixel dimesntions of the current display or host window. </dd></dl>

<p>Implements <a class="el" href="classCEGUI_1_1Renderer.html#ad4e9a3ef4088b0bada3a5e2e19f7d4a7">CEGUI::Renderer</a>.</p>

</div>
</div>
<a class="anchor" id="a6b9a4327db60fd3c66f2620f4630eb14"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::getIdentifierString" ref="a6b9a4327db60fd3c66f2620f4630eb14" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classCEGUI_1_1String.html">String</a>&amp; CEGUI::DirectFBRenderer::getIdentifierString </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const<code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Return identification string for the renderer module. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="classCEGUI_1_1String.html" title="String class used within the GUI system.">String</a> object holding text that identifies the <a class="el" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer objects.">Renderer</a> in use. </dd></dl>

<p>Implements <a class="el" href="classCEGUI_1_1Renderer.html#af3d5e2caa01be3117c220a591e10d72d">CEGUI::Renderer</a>.</p>

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

<p>Return the pixel size of the maximum supported texture. </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> of the maximum supported texture in pixels. </dd></dl>

<p>Implements <a class="el" href="classCEGUI_1_1Renderer.html#af978f8a138518f613d4ea76db33c7101">CEGUI::Renderer</a>.</p>

</div>
</div>
<a class="anchor" id="a94532b0ee109e167e39d28fb9a60c487"></a><!-- doxytag: member="CEGUI::DirectFBRenderer::setDisplaySize" ref="a94532b0ee109e167e39d28fb9a60c487" args="(const Size &amp;sz)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void CEGUI::DirectFBRenderer::setDisplaySize </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><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the size of the display or host window in pixels for this <a class="el" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer objects.">Renderer</a> object. </p>
<p>This is intended to be called by the <a class="el" href="classCEGUI_1_1System.html" title="The System class is the CEGUI class that provides access to all other elements in this system...">System</a> as part of the notification process when display size changes are notified to it via the <a class="el" href="classCEGUI_1_1System.html#a259ef239fb65e93bafd6c777a93dbfb1" title="Notification function to be called when the main display changes size. Client code should call this f...">System::notifyDisplaySizeChanged</a> function.</p>
<dl class="note"><dt><b>Note:</b></dt><dd>The <a class="el" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer objects.">Renderer</a> implementation should not use this function other than to perform internal state updates on the <a class="el" href="classCEGUI_1_1Renderer.html" title="Abstract class defining the basic required interface for Renderer objects.">Renderer</a> and related objects.</dd></dl>
<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 describing the dimesions of the current or host window in pixels. </td></tr>
  </table>
  </dd>
</dl>

<p>Implements <a class="el" href="classCEGUI_1_1Renderer.html#a7f359f7c73091bed8e8b35b90779929c">CEGUI::Renderer</a>.</p>

</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Jan 22 2012 16:07:42 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>