diff options
author | David Thompson <dthompson2@worcester.edu> | 2018-03-10 20:32:18 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2018-03-10 20:32:32 -0500 |
commit | af2872325ed461252303ec8b7987058b664843f1 (patch) | |
tree | cb710d0a186a2617ab86b98a5bdb9acd4cbe6934 /manuals/chickadee/Textures.html | |
parent | 89a3558fb9b094b9a92055e98ad655e9bb799eba (diff) |
Update Chickadee manual.
Diffstat (limited to 'manuals/chickadee/Textures.html')
-rw-r--r-- | manuals/chickadee/Textures.html | 36 |
1 files changed, 29 insertions, 7 deletions
diff --git a/manuals/chickadee/Textures.html b/manuals/chickadee/Textures.html index a31d6fb..66d9fe7 100644 --- a/manuals/chickadee/Textures.html +++ b/manuals/chickadee/Textures.html @@ -30,8 +30,8 @@ http://www.texinfo.org/ (GNU Texinfo). <link href="Index.html#Index" rel="index" title="Index"> <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents"> <link href="Graphics.html#Graphics" rel="up" title="Graphics"> -<link href="Blending-and-Depth-Testing.html#Blending-and-Depth-Testing" rel="next" title="Blending and Depth Testing"> -<link href="Lines-and-Shapes.html#Lines-and-Shapes" rel="prev" title="Lines and Shapes"> +<link href="Sprites.html#Sprites" rel="next" title="Sprites"> +<link href="Rendering-Engine.html#Rendering-Engine" rel="prev" title="Rendering Engine"> <style type="text/css"> <!-- a.summary-letter {text-decoration: none} @@ -57,8 +57,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> @@ -67,16 +90,15 @@ ul.no-bullet {list-style: none} <a name="Textures"></a> <div class="header"> <p> -Next: <a href="Blending-and-Depth-Testing.html#Blending-and-Depth-Testing" accesskey="n" rel="next">Blending and Depth Testing</a>, Previous: <a href="Lines-and-Shapes.html#Lines-and-Shapes" accesskey="p" rel="prev">Lines and Shapes</a>, Up: <a href="Graphics.html#Graphics" accesskey="u" rel="up">Graphics</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html#Index" title="Index" rel="index">Index</a>]</p> +Next: <a href="Sprites.html#Sprites" accesskey="n" rel="next">Sprites</a>, Previous: <a href="Rendering-Engine.html#Rendering-Engine" accesskey="p" rel="prev">Rendering Engine</a>, Up: <a href="Graphics.html#Graphics" accesskey="u" rel="up">Graphics</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Index.html#Index" title="Index" rel="index">Index</a>]</p> </div> <hr> <a name="Textures-1"></a> -<h4 class="subsection">2.4.4 Textures</h4> +<h4 class="subsection">2.4.2 Textures</h4> <dl> -<dt><a name="index-load_002dimage"></a>Scheme Procedure: <strong>load-image</strong> <em><var>file</var> [#:min-filter nearest]</em></dt> -<dd><p>[#:mag-filter nearest] [#:wrap-s repeat] [#:wrap-t repeat] -</p> +<dt><a name="index-load_002dimage"></a>Scheme Procedure: <strong>load-image</strong> <em><var>file</var> [#:min-filter nearest] [#:mag-filter nearest] [#:wrap-s repeat] [#:wrap-t repeat]</em></dt> +<dd> <p>Load the image data from <var>file</var> and return a new texture object. </p> <p><var>min-filter</var> and <var>mag-filter</var> describe the method that should |