Tagged Questions

6
votes
3answers
3k 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, ...
2
votes
2answers
307 views

XNA 4.0 - Alpha and Multiple Textures … Messed Up

I am trying to make some sort of sliding menu... In a circle images will slide down or up as the user will touch the icons and slide them (like modern phones or like the casino machines' fruits ...
2
votes
1answer
2k views

Resize and Load a texture2d in XNA

i'm a newbie in XNA just in case. What i try to do is load a texture in a different size from his original, or at least have the possibility to change his size after. I see in some places that i can ...
1
vote
1answer
109 views

How to check if a Texture2D is transparent?

I want to check if the selected rectangle is transparent: spriteBatch.Draw(texture, new Vector2(0, 0), new Rectangle(0, 0, 16, 16), Color.White); Is it possible?
1
vote
2answers
149 views

C# XNA How to change the alpha for an entire Texture2D?

Is it possible to permanently change the alpha value of a texture without rendering it into another surface ?
1
vote
1answer
1k views

How to scale texture2d in XNA with window resizing

I'm developing an UI for a project for school, and I've tried similar methods to scaling my texture as listed here, but here is the issue: Our project is developed at 1440 x 900, so I've made my own ...
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.
1
vote
1answer
348 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 ...
0
votes
1answer
88 views

Creating a texture from a RGBA value with SlimDX

this is my first post to stack overflow! I'm using SlimDX for a game that my team is making and I've run into an issue. I'm trying to create a ShaderResourceView from RGBA values in a Color4 object. ...
0
votes
1answer
92 views

XNA: Using Content.Load with a subclass of Texture2D

So I have a subclass of Texture2D called ScrollingBackgroundTexture. I'd like to use it to load a texture with Content.Load<>, but I can't seem to get it to work. Here's the code in my subclass ...
0
votes
3answers
148 views

In Xna, how do i reduce the size of my textures?

i have a 2d top-down game in Xna that uses a single image as it's 'arena'. The image is uses as a Texture2D, 4096*1050, and only 186kb as a png(the graphic is just a plain placeholder for now). When ...
0
votes
1answer
185 views

Texture2D: SetData doesn't work

I'd like to have a sort of floor with a programmaically created texture on it. I already created the vertices and the indexes needed for the work: private VertexPositionNormalTexture[] verticiBase; ...
0
votes
1answer
152 views

Accessing the data in a SlimDX Texture2D object

How do I access the data in a Texture2D object? Lots of XNA posts suggest using the function Texture2D.GetData but that appears to be missing in the SlimDX version of a Texture2D. I need to process my ...
0
votes
1answer
122 views

XNA Rendering to a Texture2D

So how do I render a texture2d to another one? I'm pretty sure its possible.
0
votes
1answer
84 views

Performance difference between different ways to draw rectangles from textures in xna?

I am trying to developing p a JRPG/dungeon crawler as a summer project and I am atm cleaning up in my code. In the combat it exists "healthbars" and one healthbar consists of 3 rectangles that need to ...
0
votes
2answers
186 views

Assigning a Texture2D to an existing Texture2D

I am currently messing with C# XNA 4.0, but I am having some problems assigning a Texture2D to an existing Texture2D. An example of the code shown below: protected override void LoadContent() ...
0
votes
1answer
1k 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?