File: surface_resources.xml

package info (click to toggle)
clanlib 0.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 28,372 kB
  • ctags: 16,520
  • sloc: cpp: 101,145; sh: 8,752; xml: 6,410; makefile: 1,740; ansic: 463; perl: 424; php: 247
file content (49 lines) | stat: -rw-r--r-- 1,155 bytes parent folder | download | duplicates (7)
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
<xml>
<head>
<title>Surface Resources</title>
</head>
<body>

<h3>Resource options</h3>

<p>Each surface <i>can</i> have the following properties:</p>

<pre>
&lt;surface
	name="my_surface"
	file="filename"
	format="image_format" &gt;
</pre>

<p>To setup a surface resource, it is required to specify the <i>name</i>
and <i>file</i> attributes of &lt;surface&gt;. If ClanLib has trouble
determining what format the specified filename is in, the extension known by
clanlib (eg. "jpg") can be told using the <i>format</i> attribute.</p>

<h3>Surface resource options reference</h3>

<p><b>&lt;surface&gt;</b></p>

<ul>
<li>Attribute <b>name</b>: Name of resource.
  <p>
  <i>Valid values</i>:<br>
  <i>Default value</i>: None, MUST BE PRESENT.
  </p>
</li>
<li>Attribute <b>file</b>: Filename of image to be used.
  <p>
  <i>Valid values</i>:<br>
  <i>Default value</i>: None, MUST BE PRESENT.
  </p>
</li>
<li>Attribute <b>format</b>: Extension of known format to be used for loading.
  <p>
  <i>Valid values</i>: "png", "jpg", "tga, "pcx"<br>
  <i>Default value</i>: Uses the extension used in the <i>file</i> attribute.
  </p>
</li>
</ul>

</body>
</xml>