Giter VIP home page Giter VIP logo

openscenegraph-cross-platform-guide-application's Introduction

Table of contents

This is a sample application for OpenSceneGraph cross-platform guide.

It displays provided model with simple GLSL shaders.

The structure contains description and implementation notes for each entity.

  • functions.h file
    • std::string logLevelToString(osg::NotifySeverity severity)
      • Convert OpenSceneGraph logging level to string representation
    • std::string printfString(const char *fmt, ...)
      • Construct a string using printf-like syntax
      • Maximum string length is 1024 bytes long including trailing zero
    • void platformLog(const char *message)
      • Log message using platform specific tools
      • Android uses __android_log_write(ANDROID_LOG_ERROR, "OSG", message)
      • Others use std::cout << message << std::endl
    • void setupCamera(osg::Camera *cam, osg::GraphicsContext *gc, double fovy, int width, int height)
      • Configure camera with common defaults
      • Only used under desktop and iOS
      • TODO Does it make sense to use it for for others?
    • Desktop: osg::GraphicsContext *createGraphicsContext(const std::string &title, int x, int y, int width, int height) / iOS: osg::GraphicsContext *createGraphicsContext(int width, int height, float scale, UIView *parentView)
      • Create graphics context using OpenSceneGraph functionality
      • Only used for desktop and iOS. Android and Web do not use the function, because their graphics contexts are created outside OpenSceneGraph

The full process of building sample application for desktop, mobile, and web is available in OpenSceneGraph cross-platform guide.

openscenegraph-cross-platform-guide-application's People

Contributors

kornerr avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.