Can I do 2D in OpenGL?
Forum FAQ - GameDev.Net Discussion ForumsYes. Using an orthogonal projection. You can use glOrtho for this. A more detailed answer to the question was posted by Dwarf with Axe here.
Related QuestionsHow do I bypass OpenGL matrix transformations and send 2D coordinates directly for rasterization?
OpenGL FAQ / 9 TransformationsThere isn't a mode switch to disable OpenGL matrix transformations. However, if you set either or both matrices to the identity with a glLoadIdentity() call, typical OpenGL implementations are intelligent enough to know that an identity transformation is a no-op and will act accordingly. More detailed information on using OpenGL as a rasterization-only API is in the OpenGL Game Developers FAQ.
Related QuestionsWhat is Java 2D?
Java Foundation Classes (JFC)With Java 2D, developers can render, manipulate, and transform complex 2D images and text. Java 2D enables the creation of richer-looking components and applications.
Related QuestionsWhere can I find an OpenGL GUI?
Forum FAQ - GameDev.Net Discussion ForumsForum regular JavaCoolDude has kindly donated his own GUI framework for poeple to use, the relivent thread on it can be found here
Related QuestionsTOP] Where can I get OpenGL?
SGI - OpenGL Performer: Frequently Asked Questions for LinuxOpenGL is now available from many sources and is included with many popular Linux distributions. Most vendors (including SGI) pre-bundle accelerated OpenGL drivers with their systems; some (nVidia, ATI, et al) have accelerated drivers available on their web sites; and other vendors (3dfx, Matrox, ATI, etc) use drivers created by the DRI Project or the Utah-GLX Project. Which implementation of OpenGL to choose is ultimately dependent upon the type of graphics card you have.
Related QuestionsWhere can I get the OpenGL specification?
SGI - OpenGL Frequently Asked QuestionsThe Windows operating systems include high-performance 3D graphics capabilities as a native part of the operating system using the OpenGL API. It was announced at MacWorld on January 5, 1999, that Apple Computer, Inc. has licensed OpenGL, and will incorporate OpenGL into future versions of the Macintosh® operating system, starting with the next release of Mac OS 8 and the first release of Mac OS X. Mesa (see www.mesa3d.org) is an implementation of OpenGL written for Linux systems.
Related QuestionsWhat is the OpenGL ARB?
SGI - OpenGL Frequently Asked QuestionsThe OpenGL ARB is the OpenGL Architecture Review Board. It is an independent consortium, formed in 1992, that governs the OpenGL specification.
Related QuestionsHow can I render text with OpenGL?
Forum FAQ - GameDev.Net Discussion ForumsThe fastest method is to use bitmap fonts. Typically you would create a greyscale texture which includes all of the letters on a black background, aligned in order of their ASCII codes. You'd then load the texture into your program as a 4 channel image (with each channel a duplicate of the first). Each letter requires texture coordinates, so you'd need to store these in a structure of some sort.
Related QuestionsHow can I do collision detection with OpenGL?
Forum FAQ - GameDev.Net Discussion ForumsYou have to write your own. OpenGL is a graphics library, it doesn't do collision detection. Neither does it do audio, wash dishes, unblock drains, or remove stubborn stains from carpets. As such, questions relating to collision detection should be asked in Math and Physics.
Related QuestionsWhere can I find some OpenGL Shading Language Tutorials?
Forum FAQ - GameDev.Net Discussion ForumsNoisecrime has supplied a list of locations people might find some usefull OpenGL Shading Language tutorials; Yes it does, the more you have the more work the driver and graphics card is having todo, however some state changes cost less than others, as such the type of state change tends to matter more as you shouldnt be doing redundant changes anyway.
Related QuestionsWhat are the capabilities of the Java 2D text rendering system?
Java 2D FAQThese capabilities are all uniformly supported across platforms both for on-screen display and for printing.
Related QuestionsWhat font types does Java 2D support?
Java 2D FAQThe primary and preferred font format is the TrueType font format. Java 2D also supports Opentype layout tables within TrueType fonts for complex text rendering (Arabic, Indic etc). In addition Java 2D supports Postscript Type1 fonts. Are any fonts bundled with Java 2D? A: Yes, the Java SE SDK includes three Lucida TrueType font families: Lucida Sans (Sans Serif), Lucida Typewriter (Terminal/Monospaced) and Lucida Bright (Serif).
Related QuestionsWhat kinds of shapes can I draw using Java 2D?
Java 2D FAQThe Java 2D API provides classes for drawing basic shapes like rectangles and circles but also allows you to draw any arbitrary shape. The following table lists the classes that represent predetermined shapes. A point representing a location in (x,y) coordinate space. Points render nothing when drawn or filled, but the Point2D class is used in many of the APIs that manipulate or construct shapes.
Related QuestionsHow is it different from 2D?
Frequently Asked Questions (FAQ) on 3D ModelingThere are three geometric views (Elevation, Top and Side) or parameters (Length, Breadth and Height) that define the shape, size and other details of a product. In 2D, only 2 parameters in terms of dimensions can be provided for a view. Here, a combination of any two parameters is depicted in one view and the third Parameter is shown in the other view. To create the model, complete details and inputs are taken from all the views.
Related QuestionsTOP] How can I order OpenGL Performer?
SGI - OpenGL Performer: Frequently Asked QuestionsContact an SGI sales representative. In the United States, call SGI direct toll-free at (800) 800-7441. If you are outside the U.S.A., contact the SGI subsidiary or authorized distributor in your area.
Related QuestionsWhat benchmarks exist for OpenGL?
SGI - OpenGL Frequently Asked QuestionsThe OpenGL Performance Characterization (OPC) project subgroup of the Graphics Performance Characterization (GPC) group manages two benchmarks. viewperf which tests performance of viewsets representative of different real-world workloads, and GLperf which tests the performance of low-level primitive operations such as drawing triangle strips and copying pixels. OPC maintains an independent Web site that describes the benchmarks in more detail and summarizes results reported by OpenGL vendors.
Related QuestionsCan I use Amulet with OpenGL?
Amulet FAQOne user has reported successfully using with OpenGL. If you are interested in contributing code that adds OpenGL support to Amulet, wewould be most happy to make it available to other Amulet users.
Related QuestionsWhich vendors are licensing OpenGL?
OpenGL FAQs - WikiFAQ - Answers to Frequently Asked Question...OpenGL is supported by many hardware and software vendors. As of September, 1995, OpenGL has been licensed to:
Related QuestionsWhat is the state of OpenGL on Windows Vista?
Forum FAQ - GameDev.Net Discussion ForumsThe OpenGL Programming Guide (The red book) version 1.1 ( pdf version ): A comprehensive guide to using OpenGL The OpenGL extension registry : For the latest OpenGL extension specifications and the essential glExt.h header file.
Related QuestionsHow can I program for OpenGL beyond version 1.1 in windows?
Forum FAQ - GameDev.Net Discussion ForumsAlthough the current OpenGL version is 1.5 (as of 2004/03/29) , and this has been implemented by all major hardware manufacturers, Microsoft has only released OpenGL32.dll and OpenGl32.lib files corresponding to version OpenGL 1.1. In order to use newer core functions or any OpenGL extensions, you have to link the functions you want manually. To do this, download the latest glext.h from SGI.com which includes typedefs for all registered extension functions. After including glext.
Related QuestionsHow can I move the OpenGL chart?
Frequently Asked Questions about BI2M - The OLAP and Data Mi...Point to the chart and press the middle mouse button. Hold the button and drag to the desired position. You can also move the legend and the title of the chart in the same way.
Related QuestionsHow can I print with OpenGL?
OpenGL FAQ / 24 MiscellaneousOpenGL currently provides no services for printing. The OpenGL ARB has discussed a GLS stream protocol, which would enable a more common interface for printing, but for now, printing is only accomplished by system-specific means. On a Microsoft Windows platform, ALT-PrintScreen copies the active window to the clipboard. (To copy the entire screen, make the desktop active by clicking on it, then use ALT-PrintScreen.
Related QuestionsIs OpenGL supported?
MKS Toolkit, D?veloppement UNIX et Windows - FAQsYes, MKS Toolkit for Enterprise Developers contains OpenGL header files, libraries, and DLLs. In addition, we also offer the Hummingbird OpenGL Development Option for those customers who want to use Hummingbird's Exceed X server and Exceed 3D for OpenGL.
Related QuestionsWhat is OpenGL Performer?
SGI - OpenGL Performer: Frequently Asked Questions for LinuxOpenGL Performer is a powerful and comprehensive programming interface for developers creating real-time visual simulation and other performance-oriented 3D graphics applications. It simplifies development of complex applications used for visual simulation, manufacturing, simulation-based design, virtual reality, scientific visualization, interactive entertainment, broadcast video, architectural walk-through, and computer-aided design.
Related Questions