Skip to content

Commit

Permalink
Bumped the pdf version
Browse files Browse the repository at this point in the history
  • Loading branch information
kthakore committed Feb 22, 2011
1 parent 9fde9f2 commit 75956e6
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 6 deletions.
26 changes: 21 additions & 5 deletions dist/SDL_Manual.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -163,6 +163,16 @@ <h4>Or Compiling Dependencies</h4>


<h3>CPAN install</h3> <h3>CPAN install</h3>


<p>Before installing SDL you should make sure that some important modules
are up-to-date.</p>

<pre><code> sudo cpan CPAN
sudo cpan YAML Module::Build
</code></pre>

<p>After these two steps cpan will be able to find all depedencies for
SDL.</p>

<pre><code> sudo cpan SDL</code></pre> <pre><code> sudo cpan SDL</code></pre>


<p>For most platforms a CPAN install will suffice. Supported and tested <p>For most platforms a CPAN install will suffice. Supported and tested
Expand Down Expand Up @@ -226,12 +236,18 @@ <h2>Acknowledgements</h2>


<h1>The Screen</h1> <h1>The Screen</h1>


<h2>Background</h2> <h2>Background </h2>

<p>SDL manages a single screen which is attached to the video device. ,
some examples are X11 and DirectX. An SDL application may contain one or
more Surfaces.</p>

<blockquote>

</blockquote>


<p>SDL manages a single screen which is attached to the video device. An <p>The screen is typically created using the <code>SDLx::App</code>
SDL application may contain one or more Surfaces of different kinds. But class.</p>
we'll leave that issue till later. The screen is typically created using
the <code>SDLx::App</code> class.</p>


<pre><code> use strict; <pre><code> use strict;
use warnings; use warnings;
Expand Down
Binary file modified dist/SDL_Manual.pdf
Binary file not shown.
14 changes: 13 additions & 1 deletion src/01-first.pod
Original file line number Original file line Diff line number Diff line change
@@ -1,8 +1,20 @@
=head0 The Screen =head0 The Screen


=head1 Background =head1 Background
X<Video>
X<Video Device>
X<Surface>
X<Screen>


SDL manages a single screen which is attached to the video device. An SDL application may contain one or more Surfaces of different kinds. But we'll leave that issue till later. The screen is typically created using the C<SDLx::App> class. SDL manages a single screen which is attached to the video device. , some examples are X11 and DirectX. An SDL application may contain one or more Surfaces.

=begin sidebar



=end sidebar

The screen is typically created using the C<SDLx::App> class.


=begin programlisting =begin programlisting


Expand Down

0 comments on commit 75956e6

Please sign in to comment.