The texture2d tag has no wiki summary.
4
votes
2answers
2k views
Texture memory-tex2D basics
While using texture memory I have come across the following code:-
uint f = (blockIdx.x * blockDim.x) + threadIdx.x;
uint c = (blockIdx.y * blockDim.y) + threadIdx.y;
uint read = tex2D( refTex, ...
7
votes
3answers
2k views
After Writing to a RenderTarget, How to Efficiently Clone the Output?
XNA noob here, learning every day. I just worked out how to composite multiple textures into one using a RenderTarget2D. However, while I can use the RenderTarget2D as a Texture2D for most purposes, ...
7
votes
3answers
5k views
Is there a fast alternative to creating a Texture2D from a Bitmap object in XNA?
I've looked around a lot and the only methods I've found for creating a Texture2D from a Bitmap are:
using (MemoryStream s = new MemoryStream())
{
bmp.Save(s, ...
4
votes
1answer
2k views
XNA draw / paint onto a Texture2D at runtime
Morning all (if its morning where you are)
I have been looking around and have not seen a satisfactory method for doing this so thought I would ask around...
Ideal world I would like to be able to ...
0
votes
2answers
591 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) ...
2
votes
1answer
80 views
Optimal way to set pixel data?
I'm working on a "falling sand" style of game.
I've tried many ways of drawing the sand to the screen, however, each way seems to produce some problem in one form or another.
List of things I've ...
2
votes
1answer
2k views
How does XNAs Content.Load<Texture2D> operate?
I'm just curious if it actually loads the asset into memory every time it's called or if it looks it up, finds if it's loaded and if it isn't loaded it loads it once and just keeps references so the ...
2
votes
1answer
742 views
Textures not drawing if multiple EAGLViews are used
I'm having a bit of a problem with Apples EAGLView and Texture2D. If I create an instance of EAGLView and draw some textures, it works great. However, whenever I create a second instance of EAGLView, ...
1
vote
1answer
616 views
GLES20 Texture Not Working on Some Devices
I have tried to add a fairly simple extension on top of Android's example OpenGL 2.0 project in order to add texturing to basic shapes. This seems pretty straightforward, but on certain devices ...
1
vote
2answers
143 views
Why can I not load a texture into my app?
I think texture mapping is a really easy task. Actually, I implemented it many times but failed in this time and don't know why? And I can guarantee that the route to load the texture is right. Any ...
1
vote
1answer
1k views
XNA BlendState with SpriteBatch
We are needing a BlendState to act as the following:
Transparent PNGs are drawn as expected, with anything behind them preserved
We use Color.White to draw a PNG as-is
We will change the alpha ...
1
vote
1answer
1k 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
1answer
38 views
Unload the texture2D that I want to Unload
I would like to Unload some Texture2D without Unloading everything.
Should I create a ContentManager for each Texture2D that I'm supposed to Unload later ?
These Texture2D don't have to be Unloaded ...
0
votes
3answers
774 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
2answers
2k views
XNA.Texture2D to System.Drawing.Bitmap
I need load XNA.Texture2D to PictureBox.
i've tried this: http://www.gamedev.net/community/forums/viewreply.asp?ID=3224621 but it doesn't work. Any suggestions?
