The texture2d tag has no wiki summary.
1
vote
2answers
58 views
Loading a texture2D in a sepeate class using c# and xna
I have been adding a bunch of textures to my game in xna so i decided to make a separate class to load and draw the textures.
this is what i have so far
using System.Text;
using ...
1
vote
2answers
1k views
How do I render my animated Texture2D in the 3d world in XNA4.0
As I've studied so far, there are 2 ways to draw in xna; using spritebatch or putting items onto the 3d world and then use a camera to render it.
Currently, I'm working on my 2.5D game. I'm using a ...
0
votes
2answers
136 views
Texture 2d resizing necessary in XNA?
Imagine, I have a picture (Texture2D in XNA) scalled 256x256, but sometimes I want to use it with a size of 64x64 in the application.
I learned on regular Windows Forms or WPF applications, when I ...
0
votes
2answers
455 views
Render to a texture2d XNA
I need to render a sprite in a texture2d so that this texture can later be render on the screen, but at the same time I need to access the pixels of this modified texture so, if I add let's say a ...
7
votes
1answer
122 views
Can I create a tile engine in a pixel shader?
I am attempting to create a tile engine using a pixel shader and two textures. One texture will hold the tileset and one the map.
Is it possible to read the texture data as actual (unsampled) data ...
2
votes
1answer
192 views
OpenGL ES IOS Texture 2D drawing upside down
I am writing a small game (it is 2d) in IOS using Opengl as a way to get comfortable with opengl. I am using the Texture2D class from the CrashLanding demo. I am using this to generate text for the ...
1
vote
1answer
239 views
OpenGL ES 2.0: Is there a workaround for missing texture access in vertex shader?
I'm currently trying out some OpenGL ES 2.0 with Android for a game. My map is a 2d grid map with a heights value for every position. Now I wanted to store the heights of each coordinate in a texture ...
1
vote
1answer
238 views
How to override texture color in opengl?
I am working on engine (http://b2dengine.com/) to implement my game idea, which is already in progress. Now for quite a while I am stuck with this problem with text rendering.
I have texture atlas ...
1
vote
1answer
68 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
289 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
489 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
3k 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
127 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 ...
0
votes
1answer
28 views
How do I let the user draw (like MS Paint) a picture in the given space (50x50) and saving that picture as a texture2D? XNA
I was thinking of making a windows form with a 50x50 space somewhere on it (bitmap?) and having the user draw (like MS Paint) inside the square. When the user is done, the picture can be saved by ...
0
votes
1answer
275 views
Drawing single quad texture openGL ES 2.0
I'm pretty new at ES 2.0, I'm trying to draw a single texture in openGL ES 2.0.
Here is my code:
data : a pointer to the texture (it is working, I already could test it with ES 1.0)
w : texture ...
0
votes
1answer
148 views
Load texture resized in XNA
I'm developing for Windows Phone XNA and would like to load textures with a smaller size to decrease memory impact where the full image isn't required.
My current solution is to use a rendertarget to ...
0
votes
1answer
52 views
XNA “Texture2D” amalgamation
How can I join together multiple Texture2D's into one large Texture2D? I am trying to optimize an isometric tile game by splitting the map up into chunks.
I have tried googling it, and found articles ...
0
votes
1answer
424 views
SharpDX Texture2D to Bitmap
I have a problem with using SharpDX. I convert a Bitmap, lock the bits with the lockBits method and then create a DataStream and build a Texture2D from it. This seems to work quite well, no error ...
0
votes
1answer
70 views
Loading in XNA content (Texture2Ds) inside of a VSPackage?
I am trying to dynamically load in XNA content into a VSPackage project. We would like to be able to draw a Texture2D to a graphics device control inside of Visual Studio as an add-in. We managed to ...
0
votes
1answer
174 views
Change Content.Load<Texture2D> format
We are developing some games in XNA that, thanks of Mono+MonoGame+MonoForAndroid, will be ready in all the three major mobile platforms.
The problem is that since we need to use as few memory as ...
0
votes
1answer
406 views
Overlapping 2 transparent Texture2Ds in OpenGL ES
I'm trying to make a 2D game for the iPad with OpenGL. I'm new to OpenGL in general so this blending stuff is new.
My drawing code looks like this:
static CGFloat r=0;
r+=2.5;
r=remainder(r, 360);
...
0
votes
1answer
409 views
Multiple textures doesn't show
I'm a newbie of DirectX10. Now I'm developing a Direct10 application. It mixes two textures which are filled manually according to user's input. The current implementation is
Create two empty ...
1
vote
0answers
37 views
Texture related memory leak in XNA 4.0 / C#
I found a memory leak in my XNA 4.0 application written in C#. The program needs to run for a long time (days) but it runs out of memory over the course of several hours and crashes. Opening Task ...
1
vote
0answers
33 views
Loading a Texture2D from middle of stream *solved*
I was wondering if it is possible to use the Texture2D.FromStream() in XNA to load a texture from the middle of a stream. The idea is that I have an animation system that saves the texture for the ...
1
vote
0answers
161 views
Render to texture: Maximum number?
I hava a class in an Android App that holds a byte array as data source for a texture. I use a Framebuffer to render some stuff onto that texture and then render the texture on the screen. This works ...
1
vote
0answers
128 views
Save a VertexPositionColor[] as a Texture 2d
I"m currently working on a 2D game that sometimes draws objects using
GraphicsDevice.DrawUserPrimitives<VertexPositionColor>(PrimitiveType.LineList,
...
1
vote
0answers
273 views
XNA SourceRectangle Not Drawing Texture In the Position I Want It
I've come across a situation with XNA's sourceRectangle on how it displays portion of a texture on the screen.
Let's say I have 2 simple shape textures - a square and a circle. The circle is ...
1
vote
0answers
138 views
Loading Textures using DirectXTex
I recently just got Visual Studio Ultimate 2012. I've heard that the D3DX Utility Library is deprecated in Windows 8 Metro-style Apps so I've decided I'll try not to use the functions in them.
Now, ...
1
vote
0answers
339 views
Loading XNA Texture2D from Stream
I need to load several images using Texture2D.FromStream but it can only read JPG, PNG and GIF images, I already tried to convert to a PNG using System.Drawing but it seems to be too slow.
Is there a ...
1
vote
0answers
308 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] ...
0
votes
0answers
17 views
Problems using 2D textures as 3D textures
I'm doing an application for iOS using openGL ES. I have a 3D image stored in a buffer and I need to render it. As 3D textures are not supported, I tried to divide the image into multiple 2D textures ...
0
votes
0answers
49 views
Pixel Color does not always appear the same
I have a falling sand style game that is currently only using two colors, black and cyan. I am setting the colors of a texture using texture.SetData<Color>(colorArray);
The main program updates ...
0
votes
0answers
101 views
Microsoft.Xna.Framework.Content.ContentLoadException in MonoGame when calling string from a stored xnb file path
(I am using VS2012 Ultimate to make Windows Phone 8 Game with MonoGame)
So I have a class called ImagePathStorer.
The purpose of the class is to store the string path from my xnb background file so, ...
0
votes
0answers
12 views
My class will not draw properly on the screen, no errors just not drawing
Ive been working on a side scrolling game and ive almost finished the game, when it came to making a class for an owl the code was similar to other i just used the same methods but now when it comes ...
0
votes
0answers
31 views
DirectCompute weird output
I'm trying to use a compute shader to output a Texture2D to use as a heightmap. The heightmap I want should be composed of 6 octaves of simplex noise, using the DispatchThreadID of the threads in the ...
0
votes
0answers
78 views
Why multiple Render Target Views for the same texture?
I am new to graphics programming. I was going through one of the DX application. I do see same texture being used as Render Target. I can under-stand that logic if they are to be used in the same draw ...
0
votes
0answers
73 views
I am able to add the image texture for sphere. I don't know where i am going wrong
I have written code for placing the texture image on sphere and to rotate the sphere on swipe action. But i am not able to add the texture on sphere. Please help me to fix the issue.
GLsurfaceview ...
0
votes
0answers
35 views
XNA Setting A Boolean onto a random Texture
Seeing as this forum is quite helpful ive hit another snag.
after playing with my code i have managed to get my code to draw random sprites although im assuming the game is updating at 60 frames a ...
0
votes
0answers
75 views
How to apply video processing on the GPU
I have a issue in programming for the graphics Card.
I write a shader for Image processing (I use DirectX 11 in combination with SharpDX), but the Transfer from the CPU to the GPU is really slow ...
0
votes
0answers
197 views
OpenGL ES 2.0 Texture Cache? (load nearly unlimited number of textures)
I'm planning to implement a canvas view that can handle a shitload amount of fullscreen images on iPad, with many layers, tons of custom shaders, and more.
Is there any automated way top cache to ...
0
votes
0answers
118 views
DirectX9 flip\mirror texture
I want to mirror texture:
g_pd3dDevice->SetSamplerState(0, D3DSAMP_ADDRESSU, D3DTADDRESS_MIRROR);
g_pd3dDevice->SetTexture(0, g_Texture);
but nothing is happening... What am I doing wrong?
0
votes
0answers
100 views
Scale Texture2D in SlimDX, DX10
I have a Texture2D and I need to make make a smaller copy of it. In Dx9 I used StrechRect function, but there is nothing like that in Dx10. The documentation says that renders to texture and shaders ...
0
votes
0answers
126 views
GL 2.0 Point Texture Position: Displayed at an offset on some devices (Android NDK)
I am trying to render a set of points using a texture. This works well on some devices, like HTC One V and Samsung S2 (texture is centered around the point) but on others, like HTC 1X, the texture is ...
0
votes
0answers
423 views
iPhone OpenGL ES background texture problems
I am trying to set a .png file as my background in OpenGL, with the hopes of drawing more objects on top of it. I have an image that is a 320x480 RGB image. I setup my vertices, as follows:
- ...
0
votes
0answers
2k views
glTexImage2D throws error 1281 for height or width > 128 pixels
I' new to openGL ES 1.0/1.1 programming, and this error's been haunting me for a few days..
I'm trying to init a texture with glTexImage2D, however it always throws a 0x501/1281 error whenever I try ...
