Code Monkey home page Code Monkey logo

nehe-android's People

Watchers

 avatar

Forkers

caomw

nehe-android's Issues

Android Specific Documentation

Is there going to be any android specific documentation that can accompany 
the sources?

I'd love to see a structure that not only puts best practices forward but 
also allows community edits / commentary as well.

I know this is a "bug", but thank you so much for this project!

Original issue reported on code.google.com by atrauzzi on 16 Mar 2010 at 7:13

keyboard not accessible

Provide keyboard access option.

Original issue reported on code.google.com by cosminb on 11 Jan 2015 at 6:41

With OpenGLDemo built from source, demos 6-23 do not work properly

What steps will reproduce the problem?
1. Sync up with latest source on SVN
2. Build and run the OpenGL on the emulater and real devices
3.

What is the expected output? What do you see instead?

-: Expected :-

The demos (6-23) should run and the objects can be manipulated with touch 
gesture.

-: Actual :-

The message
"The application OpenGLDemos {process ro.brite.android.opengl) has stopped 
unexpectedly. Please try again.

What version of the product are you using? On what operating system?

Latest NeHe source from SVN, Android 1.5 Emulator, Motorola Cliq, Android 2.1 
device

Please provide any additional information below.

Prebuilt apk works fine.

Original issue reported on code.google.com by [email protected] on 27 Oct 2010 at 6:37

garbled textures on app switch

What steps will reproduce the problem?
1. Open tutorial 7.
2. Bring another app to foreground without exiting (e.g. have someone call
you and hang up).
3. The tutorial 7 is brought back to the foreground.

The cube should be properly textured. Instead it's just noise.

All applications using textures are affected.

Original issue reported on code.google.com by cosminb on 15 Dec 2009 at 8:44

Finger swipe rotation 'resolution'

While for the HTC Magic rotating the object seemed natural, on larger devices, 
such as tablets, the sensibility needs to be adjusted (right now, it's too 
sensitive for large devices, we need to scale accordingly).

Original issue reported on code.google.com by cosminb on 11 Jan 2015 at 6:36

fullscreen switching is broken

What steps will reproduce the problem?
1. Open any tutorial.
2. Double-tap to switch to fullscreen.
3. Double-tap again to switch back.

What is the expected output? What do you see instead?
The application exits. It should just switch back to non-fullscreen mode.

Please use labels and text to provide additional information.
All other applications are affected.

Original issue reported on code.google.com by cosminb on 15 Dec 2009 at 9:22

Building OpenGLDemos from source, demo 6-23 do not work properly

What steps will reproduce the problem?
1. Sync up SVN to get latest source
2. Build and run the demo on Eclipse
3.

What is the expected output? What do you see instead?

-:Expected:-
Demo 6-23 will load and run, and object can be manipulated through touch 
gesture.

-:Actual:-
Demo fails to run with the message
- The application OpenGLDemos ( process ro.brite.android.opengl) has stopped 
unexpectedly. Please try again.

What version of the product are you using? On what operating system?
Latest Nehe source from SVN, Android 1.5 emulator, Motorola Cliq, Android 2.1 
device.

Please provide any additional information below.

Prebuilt apk works just fine.

Original issue reported on code.google.com by [email protected] on 27 Oct 2010 at 6:42

scene state lost on surface reset

What steps will reproduce the problem?
1. Open up tutorial 7.
2. Make the cube rotate.
2. Change the surface by toggling landscape/portrait mode.

What is the expected output? What do you see instead?
The cube should be still rotating. Instead, the scene is reset (i.e. angles
and speeds are reset).

Please note other apps are probably affected too.

Original issue reported on code.google.com by cosminb on 15 Dec 2009 at 8:51

Fix colors

The item title color is always white, no matter what the color of the 
background is. This makes reading the text difficult if, for example, the 
background is gray or light-gray.

Original issue reported on code.google.com by cosminb on 11 Jan 2015 at 6:38

fast switching between landscape/portrait freezes app

1. Open any tutorial.
2. Begin switching between portrait/lanscape, without waiting for the
switch to complete.

What is the expected output? What do you see instead?
The application will freeze at some point. It should handle fast switching
between portrait and landscape modes.

Original issue reported on code.google.com by cosminb on 15 Dec 2009 at 8:55

Slight flickering between object spins

While spinning the objects, there's a slight flicker that occurs right when the 
finger swipe begins. This might be cause by an improper initialization of the 
swipe operation, or the improper cleanup of the previous one.

Original issue reported on code.google.com by cosminb on 11 Jan 2015 at 6:35

jMonkey on the lookout for Android developers and affiliates

Hello,

I am not a robot, but I suppose for the purpose of this visit I might as 
well be. I just wanted to drop by real quick to check if you are at all 
familiar with the jMonkeyEngine project. It seems our projects might have a 
thing or two in common.

http://jmonkeyengine.com/blog/blog/2010/02/10/android-support-confirmed-
for-jme3/
http://www.jmonkeyengine.com/forum/index.php?topic=13176.0
http://www.jmonkeyengine.com/forum/index.php?topic=13217.0

We are on the lookout for an Android developer to help us bring jME3's 
preliminary Android implementation to a mature, fully functional state.

http://docs.google.com/View?id=dhkt6vsf_251c54bg9hp

Maybe you could be that developer? or, maybe you know someone who might be. 
Naturally we'd also appreciate having more testers or plain Android-savvy 
people around in our community. Any reason at all for you to contact us, 
feel free! Contact information can be found in the docs link above.

Thanks for your time,

~ Erlend Sogge Heggen

Original issue reported on code.google.com by [email protected] on 27 Apr 2010 at 6:11

How to load math.c?

I am successfully compiling the code and am having great success with the 
tutorials, thanks for keeping this updated.

I am moving on to the newer tutorials however, that include the math.c file and 
I am having difficulty loading this file into my eclipse project.  I am finding 
a few pages online, but they are definitely beyond my current scope of 
experience, and I have a feeling they are overcomplicating the problem.

I am using Mac OSX and an Eclipse environment, testing and debugging on a 
TMobile G1 using the 1.5/1.6 SDK.  Thank you so much and keep up the good work!

Original issue reported on code.google.com by [email protected] on 30 Jun 2010 at 7:17

Should not use indirect buffers for rendering

See ro.brite.android.nehe02.GLRenderer for example, this Renderer uses indirect 
buffer in the glVertexPointer() call.

However, this post from the android-developers mailing list explains why 
indirect buffer must not be used. 

http://www.mail-archive.com/[email protected]/msg49757.html

Note that after the Cupcake release, the code in the project will no longer 
work as the OpenGL ES implementation correctly checks and throws an Exception 
against the use of an indirect buffer.

Original issue reported on code.google.com by [email protected] on 31 Jul 2010 at 4:28

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.