0
votes
1answer
45 views
iPhone : creating Texture2D much slower when image loaded from file in app’s Documents, why?
Slower than what? slower than creating the same textures from an image loaded from the app bundle.
How much slower ? 80 times slower on iPhone, similar ratio (but faster overall) on Mac.
My example …
1
vote
1answer
75 views
XNA: Getting a struct as a texture to the GPU
I use XNA as a nice easy basis for some graphics processing I'm doing on the CPU, because it already provides a lot of the things I need. Currently, my "rendertarget" is an array of a custom Color …
1
vote
1answer
100 views
How to Draw pixel data taken from the backbuffer back to itself ?
I'm working on a mobile application for Symbian 5th edition using OpenGLES.
This application is a pretty standard 2D app, and I make no use of the DepthBuffer.
I need to grab a snapshot of the …
1
vote
3answers
109 views
Is there a more efficient way to deal with 2^n pixels size requirement for OpenGL ES texture?
Sorry if my question is uncleared. Let me elaborate.
I have a rectangle of size 100 x 200, and I have a graphic size 100 x 200 which fits with the rectangle. Since OpenGL requires all textures to …
1
vote
1answer
902 views
Texture2D iPhone SDK openGL
I'm using the Texture2D class in an iPhone game using OpenGL ES.
Are their any good tutorials for understanding the Texture2D class?
Specifically I'm looking at the initWithString method for …
2
votes
2answers
215 views
How do I load pictures in Zune XNA without running out of memory?
Im writing a XNA program that display pictures from a specific picture album on the Zune. The problem is when if I load the textures from all the pictures in the album, the program runs out of memory. …
4
votes
1answer
325 views
Downsizing a Texture2D in XNA
I would like to downsize a Texture2D object to another Texture2D object in XNA.
The reason is to use the downsized object for pixel based collision detection.
Can this be done?
