Tagged Questions
2
votes
1answer
739 views
Mac OS X version of Texture2D.m, .h available?
Apple's Texture2D class is a very useful bit of kit for iOS developers.
Q. Is there a Mac OS X version of this class available?
(I've googled but can only find iOS implementations, mostly through ...
2
votes
2answers
769 views
Is it correct to load openGL textures like this?
I started some months ago an OpenGL project which became larger and larger... I began with the crashLanding sample and i use Texture2D.
I also use a singleton class to load my textures, and here is ...
2
votes
3answers
189 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
170 views
glTexSubImage2d not working after adding in a particle system (with textures on each particle)
We were happily using glTexSubImage2d to update a texture every few frames which had been initialised with glTexImage2d in our GL initialisation. After adding in a particle system with each particle ...
1
vote
1answer
229 views
OpenGL copy ColorAttachment0 from a Renderbuffer to a Texture2D
I'm using OpenTK and C#.
I'm rendering to a renderbuffer and I need to copy it's contents(ColorAttachment0) to a Texture2D so I can do some post-processing on it, and the draw it to the screen. How do ...
1
vote
1answer
276 views
How to ask OpenGL for graphics device Capabilities (texture2DArray, supported anti-aliasing modes)
We are using OpenTK, C# and visual studio 2010. We need to ask the graphics device if it supports texture2DArray's, and what anti-aliasing modes it may support. Any help will be appreciated.
0
votes
3answers
61 views
OpenGL texture not working
I'm trying to learn how to use textures in OpenGL. I started reading the chapter on texture mapping in OpenGL Redbook. I didn't understand it so I googled and found this tutorial. I followed ...
0
votes
1answer
189 views
how to draw textures using stb_image.c
I want to load this picture into a 2d texture and then draw it onto the screen. The main problem is loading the picture into a texture variable. The follow code output the correct width and height and ...
0
votes
3answers
251 views
Java OpenGL screen sized texture mapped quad
I have a Java OpenGL (JOGL) app, and I'm trying to create a texture mapped quad that covers the entire screen. In draw some pixels to a buffer and then I want to read those pixels into a texture and ...
0
votes
1answer
417 views
GLSL textureCube and texture2D in same shader
I can't seem to be able to have both texture2D() and textureCube() in one shader. When I do, nothing shows up and there is no error. I tried this both with my own shader loader and the Apple GLSL ...
0
votes
2answers
318 views
Possible to glTexImage2d an NPOT image onto a Pow-2 texture without extra allocation?
I have discovered that there are still a fair number of drivers out there that don't support NPOT textures so I'm trying to retro-fit my 2D engine (based on OpenTK, which is in turn based on OpenGL) ...