The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
18 views

SharpDx get Shader variable Names of Texture2D,SamplerState

I'm wondering if it's possible to get the Variable names of Texture2D and SamplerState. I know that I'm able to get those through the effects Framework. But I'm looking for a way without this ...
2
votes
1answer
29 views

Scaling a Texture2D in XNA

I have a 160 x 80 button in a window with resolution of 1280 x 720. I draw it as followed(I paraphrase a bit here): currentwindowwidth = 1280; // The scale in this instance would be 1.0f scale = ...
0
votes
0answers
16 views

Texture2d error in cocos2d-javascript

Hi i am really new to cocos2d-javascript or any cocos2d for that matter. I have looked at the API v0.1 but it did not help. I am just trying to get a simple animation going but i get an "Uncaught ...
0
votes
1answer
21 views

XNA: Polygon Source from Texture2D

I've got a problem. Using SpriteBatch, I can only draw a rectangle area from my source Texture2D. Please, help me to find the way, how I can draw polygon or circle area from my source texture. I'm ...
1
vote
0answers
35 views

Reset Texture2Ds in XNA

I'm Having a problem with an experiment of mine. I'm trying to make a method that fuses one Texture2D into another Texture2D, then reloads the Texture2D, this time moving the pasted texture in a new ...
3
votes
2answers
45 views

XNA Procedural Textures

I'm trying to make procedural textures in my XNA 4.0 game, mainly for buttons but for other textures as well. Here's an image describing what I want: Hope you understand what I want to do, if you ...
2
votes
0answers
66 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 ...
0
votes
1answer
84 views

Proper Implementation of Texture Atlas

I'm currently working alongside a piece of software that generates game maps by taking several images and then tiling them into a game map. Right now I'm working with OpenGL to draw these maps. As you ...
0
votes
0answers
26 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
54 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
1answer
58 views

Xna spriteBatch in different class

I'm about ready to tear my hair out because spriteBatch() is just not "clicking" with me. I can't seem to find anything online that covers my use of this in this exact situation, which makes me ...
1
vote
4answers
60 views

Why spritebatch.Draw shows blank output?

In my code below, I think it's correctly done. But idk, the image called by _bg is does not shown up. The screen only show White. Weirdly, there is 0 error message when I run it. (The RenderTarget2D ...
0
votes
0answers
147 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
15 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
1answer
55 views

Cropping texture2d on all sides in xna c#

i am trying to crop a texture2d in xna. i have found the following code which will crop the image on the top and right sides, i have played around with the code and cannot figure a way to crop all ...
2
votes
1answer
93 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 ...
0
votes
2answers
45 views

Initializing a non-static class with a texture2d variable

I'm learning XNA (and C# in general), and while trying to write my own little sidescroller for learning purposes, I stumbled on the following problem. The level is build from tiles, and since I don't ...
0
votes
1answer
34 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 ...
1
vote
2answers
61 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 ...
0
votes
0answers
36 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
85 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
1answer
37 views

Reload/Reset Texture2D in XNA Windowsphone

I'm manipulating a Texture2D with Texture2D.Setdata and change its color. But i want to reset the Texture2D after a Time again, currently im having the whole Texture Datas in Memory, but now i have ...
1
vote
1answer
419 views

Android NDK GL ES 2.0 render to texture (via framebuffer) results in blurry/low res image

EDIT: figured it out, see answer below. I'm having a problem trying to render to a texture in OpenGL ES 2.0 on Android (NDK) on Samsung Galaxy S More specifically i am using a Framebuffer to render ...
0
votes
2answers
134 views

How to render grayscale texture without using fragment shaders? (OpenGL)

Is it possible to draw a RGB texture as grayscale without using fragment shaders, using only fixed pipeline openGL? Otherwise I'd have to create two versions of texture, one in color and one in black ...
0
votes
1answer
315 views

OpenGL 3.3 multitexture: GL_TEXTURE1 and following are always black (Only GL_TEXTURE0 works fine)

Every texture after GL_TEXTURE0 (texture on slot 0) is black. Fragment shader (sample code to check different textures by changing weights): #version 330 uniform sampler2D g_ColorTex; uniform ...
1
vote
0answers
34 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 ...
0
votes
1answer
332 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
40 views

converting a Texture2d circle to Farseer circleBody

I may have asked a similar question before, but believe me, I have searched a lot on the web. I am very new to farseer and xna , and all I want to do is convert existing set of texture2d circles to ...
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
1answer
49 views

get only 1 pixel's color from a texture2D

Currently, i'm using this method to get the pixels' color of my Texture2D Color[] pixelColours = new Color[MyTexture.Width*MyTexture.Height]; MyTexture.GetData<Color>(pixelColours); ...
2
votes
1answer
106 views

OpenGL texture doesn't show correctly - strange behaviour

I want to detect a marker with OpenCV, and then I want to overlay it with an image, with OpenGL. First part is ok (I achieve detection marker perfectly), but I have some problems with the second. ...
0
votes
1answer
174 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 ...
1
vote
1answer
271 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 ...
0
votes
0answers
77 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 ...
1
vote
0answers
176 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 ...
0
votes
1answer
561 views

Large texture2d in XNA

I am trying to store and display a map for an RTS game as a texture2d, but the map is too big, and I get the error "XNA Framework HiDef profile supports a maximum Texture2D size of 4096". The reason I ...
2
votes
1answer
198 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
2answers
251 views

How to catch glTexImage2D error when resolution is incompatible?

I am trying to catch the error that comes from incompatible image texture resolution in glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, img->width, img->height, 0, GL_RGB, GL_UNSIGNED_BYTE, ...
1
vote
0answers
133 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
287 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
1answer
65 views

Dynamically resize texture on the fly

I'm using RenderTarget2D to draw my map to before rendering it to the screen as it changes very rarely and the map itself is made up of a LOT of very small tiles. So rather than drawing all tiles to ...
0
votes
1answer
321 views

Getting a portion of a larger Texture2d with XNA

So I'm making an asteroids like game for practice in XNA. I have a Large texture I'm using for a texture atlas as described in R.B.Whitaker's wiki here: http://rbwhitaker.wikidot.com/texture-atlases-1 ...
0
votes
1answer
202 views

How to set image in Aspect fit on Texture2D in Unity3d

Hi I am new bee in Unity and I am working on an app in which i want to load my Images in Aspect fit ratio on Texture. I Know that i can achieve this using ScaleMode.ScaleToFit but i am not getting ...
1
vote
1answer
65 views

Working with primitives in XNA

Perhaps I am trying to use XNA in a way that it was not designed, but I would very much like to be able to draw my own primitives and save them as a bitmap, or a texture2D, or anything that will hold ...
3
votes
2answers
76 views

Texture is not displayed in eclipse

I have acube and a texture is to be put on all sides. I did this successfully in a netbeans project, but at the end I got to know that its to be done in eclipse, at first it didn't sound to be a big ...
0
votes
1answer
155 views

android openGL Es 2 showing no image

I am new to Android's OpenGL ES. I have spent 3 days in texture mapping but did not get any solution to my problem. Now I have written some code but it's only showing the background color but not the ...
0
votes
0answers
37 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
80 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 ...
1
vote
1answer
707 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 ...
2
votes
1answer
194 views

vbo with 2D texture - real-time transparency issue

I am working on a n-body code which models the dynamics of a stellar disk. In the rendering, there are two types of particles : "classic" particles ( whites in the below image) and "dark matter" ...

1 2 3 4