Sponsored Content
Full Discussion: Mobile App for UNIX.com?
The Lounge What is on Your Mind? Mobile App for UNIX.com? Post 302789571 by ahamed101 on Wednesday 3rd of April 2013 10:40:58 PM
Old 04-03-2013
Mobile App for UNIX.com?

Do we have a mobile app for unix.com?
 

3 More Discussions You Might Find Interesting

1. What is on Your Mind?

Tapatalk App for Reading Forums on Mobile

Reading The UNIX and Linux Forums on My Mobile Phone For testing purposes, I have installed Tapatalk on my mobile (Samsung Galaxy S running Android 2.1 for now). Feel free to give it a try and post back any comments. You can now read The UNIX and Linux Forums on your mobile via this app.... (7 Replies)
Discussion started by: Neo
7 Replies

2. Post Here to Contact Site Administrators and Moderators

Notice: Plan to Remove Tapatalk Mobile App

Dear Forum Users, Since Tapatalk spoofs HTTP_USER_AGENT, which is not considered an acceptable Internet practice, and that Tapatalk basically hijacks forum images (uses their own server to host images posted by a Tapatalk user), we cannot continue to support Tapatalk. We have not been... (1 Reply)
Discussion started by: Neo
1 Replies

3. What is on Your Mind?

Check Out UNIX.COM on Mobile - It's Looking Good

If you have not visited the site on mobile lately, you are missing out on a great looking mobile web site. If you don't have a mobile, you can always navigate to the sliding member panel and click on "Mobile View".... It's really looking killer'...... I'm starting to think that soon the... (6 Replies)
Discussion started by: Neo
6 Replies
SDL::Tutorial(3)					User Contributed Perl Documentation					  SDL::Tutorial(3)

NAME
SDL::Tutorial - introduction to Perl SDL SYNOPSIS
# to read this tutorial $ perldoc SDL::Tutorial # to create a bare-bones SDL app based on this tutorial $ perl -MSDL::Tutorial -e 1 SDL BASICS
SDL, the Simple DirectMedia Layer, is a cross-platform multimedia library. These are the Perl 5 bindings. You can find out more about SDL at <http://www.libsdl.org/>. Creating an SDL application with Perl is easy. You have to know a few basics, though. Here's how to get up and running as quickly as possible. Surfaces All graphics in SDL live on a surface. You'll need at least one. That's what SDL::App provides. Of course, before you can get a surface, you need to initialize your video mode. SDL gives you several options, including whether to run in a window or take over the full screen, the size of the window, the bit depth of your colors, and whether to use hardware acceleration. For now, we'll build something really simple. Initialization SDL::App makes it easy to initialize video and create a surface. Here's how to ask for a windowed surface with 640x480x16 resolution: use SDL::App; my $app = SDL::App->new( -width => 640, -height => 480, -depth => 16, ); You can get more creative, especially if you use the "-title" and "-icon" attributes in a windowed application. Here's how to set the window title of the application to "My SDL Program": use SDL::App; my $app = SDL::App->new( -height => 640, -width => 480, -depth => 16, -title => 'My SDL Program', ); Setting an icon is a little more involved -- you have to load an image onto a surface. That's a bit more complicated, but see the "-name" parameter to "SDL::Surface-"new()> if you want to skip ahead. Working With The App Since $app from the code above is just an SDL surface with some extra sugar, it behaves much like SDL::Surface. In particular, the all- important "blit" and "update" methods work. You'll need to create SDL::Rect objects representing sources of graphics to draw onto the $app's surface, "blit" them there, then "update" the $app. Note: "blitting" is copying a chunk of memory from one place to another. That, however, is another tutorial. SEE ALSO
SDL::Tutorial::Drawing basic drawing with rectangles SDL::Tutorial::Animation basic rectangle animation SDL::Tutorial::Images image loading and animation AUTHOR
chromatic, <chromatic@wgz.org>. Written for and maintained by the Perl SDL project, <http://sdl.perl.org/>. COPYRIGHT
Copyright (c) 2003 - 2004, chromatic. All rights reserved. This module is distributed under the same terms as Perl itself, in the hope that it is useful but certainly under no guarantee. perl v5.12.1 2010-07-05 SDL::Tutorial(3)
All times are GMT -4. The time now is 09:06 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy