3
votes
7answers
663 views
How to I draw pixels as a texture to a polygon in OpenGL?
In C++ OpenGL, I want to draw each pixel manually (as a texture I assume) on to a simple square primitive, or indeed 2 polygons forming a square.
I have no idea where to start, or …
0
votes
0answers
8 views
XNA .Fbx textures
Hello. I'm using the standard .fbx importer with custom shaders in XNA. The .fbx model is UV wrapped properly and is textured appropriately when I use BasicEffect. However when I u …
0
votes
2answers
43 views
Can the iPhone simulator handle PVR textures?
I have a really weird problem with PVR textures on the iPhone simulator- the framerate falls through the floor on the iPhone simulator, but on the iPhone itself it works just fine. …
0
votes
1answer
78 views
How do you handle multiple textures in an OpenGL indexed buffer array for use with a data-shader?
I'm attempting to implement this paper. I've have most of it down, but the part about sending arbitrary, non-geometric data to the shader for use in determining and displaying geom …
1
vote
3answers
100 views
OpenGL ES. Scrolling 3 layer starfield textures gets me from 60 -> 40 FPS
I need to draw the background for a 2D space scrolling shooter. I need to implement 3 layers of stars: one distant nebula (moving really slow) in the background, one layer of far a …
0
votes
3answers
131 views
OpenGL - Textures loading improperly
UPDATE:
I've posted the Renderer code below, since this code here doesn't seem to be the problem.
I'm having a problem with some code of mine where when I try to upload multiple …
0
votes
2answers
59 views
Sharing a texture between direct3d and opengl?
I know mixing OpenGL and DirectX is not recommended but I'm trying to build a bridge between two different applications that use separate graphics API:s and I'm hoping there is a t …
0
votes
3answers
494 views
[OpenGl] Loading new texture into already defined texture name
I have an OpenGl program in which I am displaying an image using textures. I want to be able to load a new image to be displayed.
In my Init function I call:
Gl.glGenTextures(1, …
0
votes
2answers
195 views
Basic 2D Texture Howto for iPhone OpenGL ES
Hi guys
Just started learning OpenGL and couldn't find a decent tutorial to get me going. Specifically, I'm looking for something that will show me how to load an image to an Open …
2
votes
4answers
208 views
How to get a C method to accept UIImage parameter?
I am trying to do some Image processing on a UIImage using some EAGLView code from the GLImageProcessing sample from Apple. The sample code is configured to perform processing to a …
0
votes
0answers
88 views
Dynamic texture loading in SDL
I´ve got problems with opening textures in SDL. I´ve got a function to read bmp files, optimize them and add colorkey:
SDL_Surface* SDLStuff::LoadImage( char* FileName ) {
printf( …
0
votes
1answer
158 views
Is there any point in using an index buffer with a texture in OpenGL ES (Android)?
I'm using OpenGL ES to display some objects exported from Blender. Blender provides a list of vertices, a list of the face indices and a list of the 2d texture co-ordinates. With …
0
votes
2answers
140 views
I thought *.DDS files were meant to be quick to load!?
Ok, so I'm trying to weigh up the pro's and con's of using various different texture compression techniques. I spend 99.999% of my time coding 2D sprite games for Windows machines …
0
votes
2answers
145 views
Is it possible to check whether an OpenGL ES texture on iPhone has been truly deallocated?
The manual just instructed you to write:
glDeleteTextures(1, &GLtexture);
and claims that the texture will be deleted. iPhone has scarce memory and I want to ensure that the …
0
votes
1answer
171 views
Sprites in directx10 and texture filtering
Hi
Is it possible to set different texture filtering when working with sprites?
