13.07.2015 Views

Mali GPU User Interface Engine Application Development Guide

Mali GPU User Interface Engine Application Development Guide

Mali GPU User Interface Engine Application Development Guide

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Tutorial on the Lotion <strong>User</strong> <strong>Interface</strong> ClassesExample 5-4 Setting the depth......} else if (strcmp(argv[i], "-depth") == 0) {if (i + 1 == argc) {argErrorExit("No argument specified for -depth switch",NULL);} else if (sscanf(argv[i + 1], "%d", &configDepth) != 1) {argErrorExit("Invalid -depth: %s\n", argv[i + 1]);}i++;} else if (strcmp(argv[i], "-theme") == 0) {3. Entering theme on the command line specifies which theme to use. See Example 5-5:Example 5-5 Setting the theme......} else if (strcmp(argv[i], "-theme") == 0) {if (i + 1 == argc) {argErrorExit("No argument specified for -theme switch", NULL);} else if (strcmp(argv[i + 1], "blue") == 0) {configTheme = THEME_BLUE;} else if (strcmp(argv[i + 1], "robot") == 0) {configTheme = THEME_ROBOT;} else if (strcmp(argv[i + 1], "minimal") == 0) {configTheme = THEME_MINIMAL;} else {argErrorExit("Unknown argument specified for -theme switch: %s",argv[i + 1]);}i++;} else if (strcmp(argv[i], "-applets") == 0) {4. Entering applets on the command line specifies which applets to load. See Example 5-6:Example 5-6 Setting the applets...} else if (strcmp(argv[i], "-applets") == 0) {while (i + 1 < argc) {if (argv[i + 1][0] == '-') {break;} else if (strcmp(argv[i + 1], "all") == 0) {configApplets |= APPLETS_ALL;} else if (strcmp(argv[i + 1], "default") == 0) {configApplets |= APPLETS_DEFAULT;} else if (strcmp(argv[i + 1], "lightshow") == 0) {configApplets |= APPLET_LIGHTSHOW;} else if (strcmp(argv[i + 1], "planet") == 0) {configApplets |= APPLET_PLANET;} else if (strcmp(argv[i + 1], "buzzword") == 0) {configApplets |= APPLET_BUZZWORD;} else if (strcmp(argv[i + 1], "photo") == 0) {ARM DUI 0527A-02a Copyright © 2010 ARM. All rights reserved. 5-13ID070710Non-Confidential - Draft - Beta

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!