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>
<surface
name="my_surface"
file="filename"
format="image_format" >
</pre>
<p>To setup a surface resource, it is required to specify the <i>name</i>
and <i>file</i> attributes of <surface>. 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><surface></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>
|