Tagged Questions
The texture2d tag has no wiki summary.
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, ...
5
votes
1answer
1k 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?
3
votes
1answer
2k 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
1answer
460 views
Texture2D Array as Render Target in HLSL Pixel Shader
Currently I need a couple of textures' worth of per-pixel data from my rendering pass (normals, depth and colour).
Instead of running three passes with shaders that are essentially the same ...
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
245 views
Mapping dynamic texture causing “Already Mapped Error”
I just starting using Direct3D11 and I am trying to create a dynamic texture that I plan to update with new data several times a second. My issue is that every time I update the texture with the new ...
2
votes
2answers
295 views
Image size for OpenGL ES texture
I don't really understand about OpenGL ES yet. I've only learn about drawing triangles and so . I've yet to learn about texture.
I heard that in some devices an image with width or height to be the ...
2
votes
3answers
762 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, ...
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 ...
2
votes
2answers
1k views
Making parts of Texture2D transparent in XNA
I'm just starting game development and I thought a game like Tank wars or Worms would be nice.
The hardest part I can think of so far is making the terrain destructible and I want to know how it's ...
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 ...
2
votes
2answers
584 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. ...
1
vote
0answers
27 views
XNA spriteFont flickers when drawn over a Texture2D
Hello I am attempting to teach myself XNA. I am making a menu system for the starting splash screen of my game. I have no issues drawing a Texture2D and a spritefont to the screen. The problem comes ...
1
vote
1answer
23 views
New Sprite Frame remains as same of previous Sprite Frame
I am beginner in the Cocos2D gaming. When I change the Sprite with
[sprite setTexture:[[CCTextureCache sharedTextureCache] addImage:@"anotherSprite.png"]];
When I am changing this image in the ...
1
vote
1answer
110 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
93 views
Why texture not applying?
I have a cube with texture, when I changed my data arrays to VBO(glGen,etc.) my cube renders with grey color.But if I use something like glVertexAttribPointer(_positionSlot, 3, GL_FLOAT, GL_FALSE, 0, ...
1
vote
1answer
84 views
Repeated textures with WebGL
I need to repeat a texture within a single element. Is it even possible in WebGL?
I tried either of the following but had no luck.
ctx.texParameteri(ctx.TEXTURE_2D, ctx.TEXTURE_WRAP_S, ...
1
vote
1answer
153 views
Drawing text as textures on squares does not show anything
I'm new to OpenGL and I'm developing an Augmented-reality application for Android.
Until now, I was drawing white squares, perpendicular to the camera, pointing the user to the direction where a ...
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
337 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 ...
1
vote
1answer
221 views
How to turn data downloaded from JQuery.get, into ArrayBuffer?
x Greetings, people.
I have attempted to find an answer to this for the past three days with various keywords I know of, but could not get far. I am new to JavaScript/WebGL so this could potentially ...
1
vote
1answer
142 views
how to rotate Texture2D in cocos2d-iphone
I'm making a game using cocos2d-iphone, I want's to rotate a Texture2D of maybe 20 degrees, what can I do?
I tried glRotate(20.0f, 0.0f, 0.0f, 1.0f), but it doesn't work.
So any ideas?
1
vote
1answer
730 views
OpenGL:ES on iPhone - Texture2D size and display questions
I'm having issues with Texture2D and I'd like to understand how to use it better.
I've taken the Crashlander Texture2D class from here and a default OpenGL project in XCode 4, forcing it to load ...
1
vote
1answer
209 views
Effective way to perform image processing algorithms over Texture2D
I have a situation where I need to apply some algorithm to my texture every time it's rotated.
My question is - what is the best approach to apply an image processing algorithms within XNA?
Now the ...
1
vote
2answers
216 views
GLSL Convolution with Large Kernel in Texture Memory
I'm very new to GLSL, but I'm trying to write convolution kernel with in a fragment shader for image processing. I was able to do this just fine when my kernel was small (3x3) using a constant ...
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
139 views
is it possible to map multiple textures onto a shape in openGL ES?
Im new to OpenGL ES and wanted to create a bunch of triangles that would represent a grid of squares that i could map map tiles to. Is it possible to map separate textures on the same shape in OpenGL ...
1
vote
2answers
951 views
Need help with 2D textures on CUDA. Not getting the expected value for the indexes I want
I have two matrices (A and B), 2-dimensions. And i think i'll speed up a bit if instead of putting it into global memory and access via pointers, i put them into textures 2d and use it. The matrices ...
1
vote
1answer
733 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 ...
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
281 views
Problems with glDrawTex_OES
I'm not sure I'm using glDrawTex_OES correctly. In fact, I'm sure I'm not because I'm getting a black rectangle on the screen rather than the intended texture.
To get the silly points out of the ...
1
vote
0answers
219 views
Texture2D implementation on iPhone problem
Im trying draw text using Texture2D but all I get is a big white square. What wrong?
glPushMatrix();
glRotatef(rodar+30, 0, 1, 0);
glEnable(GL_BLEND);
tex = [[Texture2D alloc] ...
1
vote
4answers
4k views
Android GLSurfaceView glTexImage2D glDrawTexiOES
I'm trying to render a 640x480 RGB565 image using OpenGL ES on Android using GLSurfaceView and Native C code.
Initially I had a 0x0501 error with glTexImage2D, which I was able to resolve by changing ...
1
vote
2answers
601 views
Texture2D.Bounds.Intersect, but the Bounds never move? - XNA, .Net 4.0
I am still shiny new to XNA, so please forgive any stupid question and statements in this post (The added issue is that I am using Visual Studio 2010 with .Net 4.0 which also means very few examples ...
1
vote
1answer
94 views
How can I create a texture from an AtlasSpriteManager?
What I want to do is create a huge texture(w/ width of more than 1024) using a 1024x1024 image. I can retrieve the images using an AtlasSpriteManager, but whenever I try to retrieve the texture from ...
1
vote
1answer
528 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
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 ...
1
vote
1answer
462 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 ...
0
votes
1answer
32 views
OpenGL ES - Pixel 'Interference' at bottom of texture
I'm loading an int* array of RGBA pixel data from a UIImage, doing manipulation on it, then setting the pixels to a Glubyte* texture buffer and writing them to the texture with
...
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
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
2answers
130 views
How to switch the image of a CCSprite
I have a CCSprite that is initialized using [CCSprite spriteWithSpriteFrameName:@"plist_file_key_here.png"]. I have already added all the sprites from my plist file to CCSpriteFrameCache. I have tried ...
0
votes
1answer
93 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
191 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
0answers
193 views
Android OpenGL: Animated Sprite
SOLUTION FOUND
I finally found out where the problem was. Every texture will be
automatically scaled up to a size of power of 2. I forget to calculate
these differences into the new ...