Tagged Questions

The ability to use a texture as a target image for rendering.

learn more… | top users | synonyms

21
votes
1answer
15k views

OpenGL ES Render to Texture

I have been having trouble finding straightforward code to render a scene to a texture in OpenGL ES (specifically for the iPhone, if that matters). I am interested in knowing the following: How do ...
10
votes
1answer
2k views

Writing to then reading from an offscreen FBO on iPhone; works on simulator but not on device?

I'm trying to do some image manipulation on the iPhone, basing things on the GLImageProcessing example from Apple. Ultimately what I'd like to do is to load an image into a texture, perform one or ...
5
votes
2answers
1k views

ffmpeg video to opengl texture

I'm trying to render frames grabbed and converted from a video using ffmpeg to an opengl texture to be put on a quad. I've pretty much exhausted google and not found an answer, well I've found answers ...
5
votes
2answers
3k views

Rendering to non-power-of-two texture on iPhone

Is it possible to render to texture with OpenGL ES 1.1 on the iPhone (2G and older)? If I bind a texture as a render buffer, it has to be the size of the render buffer, which isn't POT-sized. But ...
4
votes
1answer
9k views

OpenGL ES render to texture, then draw texture

I'm trying to render to a texture, then draw that texture to the screen using OpenGL ES on the iPhone. I'm using this question as a starting point, and doing the drawing in a subclass of Apple's demo ...
3
votes
1answer
336 views

Multiple Render Targets not saving data

I'm using SlimDX, targeting DirectX 11 with shader model 4. I have a pixel shader "preProc" which processes my vertices and saves three textures of data. One for per-pixel normals, one for per-pixel ...
3
votes
1answer
1k views

Render to texture or offscreen framebuffer

I have a problem with rendering to texture and offscreen framebuffer with OpenGL ES on iPhone. First image shows mahjong tiles rendered to CAEAGLLayer directly and this is correct. Second one shows ...
3
votes
1answer
1k views

Render to texture problem with alpha

When I render to texture, and then draw the same image, it seems to make everything darker. To get this image: I'm rendering the upper-left square with color (1, 1, 1, .8) to a texture, then ...
2
votes
1answer
93 views

Can Blender generate a scene based off of a text file?

I have written a program in Python that generates a 10,000 tile coordinate plane with each tile having characteristics such as texture, temperature, elevation etc. I am doing this for a project and ...
2
votes
1answer
108 views

obtain wrong RGB during creating dynamic texture in OGRE

Hi I have problem while I am trying to create dynamic texture to assign as a background in my ogre window. I want to assign values dynamicly for an each pixel of texture and then I use this texture as ...
2
votes
1answer
553 views

Rendering to texture on iOS OpenGL ES—works on simulator, but not on device

In order to improve the performance of my OpenGL ES application for the iPad, I was planning to draw a rarely updated but rendertime-heavy element to a texture, so I can just use the texture unless ...
2
votes
3answers
761 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
2answers
2k views

glFramebufferTexture2D performance

I'm doing heavy computation using the GPU, which involves a lot of render-to-texture operations. It's an iterative computation, so there's a lot of rendering to a texture, then rendering that texture ...
2
votes
1answer
341 views

Alpha/texturing issues in an OpenGL wrapper

I'm in the process of writing a wrapper for some OpenGL functions. The goal is to wrap the context used by the game Neverwinter Nights, in order to apply post-processing shader effects. After learning ...
2
votes
2answers
2k views

opengl - blending with previous contents of framebuffer

I am rendering to a texture through a framebuffer object, and when I draw transparent primitives, the primitives are blended properly with other primitives drawn in that single draw step, but they are ...
2
votes
3answers
748 views

Setting a texture in a pixel shader and making it the render target?

I was wondering, if I render a scene using a shader to which I pass in a texture that also happens to be the render target for that scene will it cause any unwanted behaviour? So basically: texture ...
2
votes
1answer
688 views

Interpolating two textures by a third texture (factor is in lightness, not alpha)

How can I efficently interpolate per-pixel two textures A and B by a dynamic texture C and draw them on a simple quad? Multi-pass algorithms accepted. I've had moderate success calculating the C ...
1
vote
1answer
136 views

Render to Texture OpenGL ES 2.0

I am trying to use a hardware optimized 2D library to zoom (non-interpolated scaling) in and out of an image. Right now I am Loading the original image Making a copy of the original image Using the ...
1
vote
1answer
39 views

Pre-drawing the static parts of my level

I have a level based game that is using a tiling engine to present those levels. there are large parts of the level that stay static through the level like the ground, and the sky. I thought about ...
1
vote
1answer
140 views

OpenGL ES texture combines instead of replaces (works on device, not on Simulator)

I'm repeatedly rendering a UIView to an OpenGL texture. Things are working well on the device (the texture updates as expected). On the simulator the texture is initially correct (correct alpha and ...
1
vote
1answer
97 views

How can I retain render target results so they are non-volatile?

I am writing an application in XNA that relies on render targets that are rendered to just once, and then used indefinitely afterwards. The problem I've encountered is that there are certain ...
1
vote
4answers
222 views

Framebuffer Texture behavior in OpenGL/OpenGLES

In OpenGL/ES you have to be careful to not cause a feedback loop (reading pixels from the same texture you are writing to) when implementing render to texture functionality. For obvious reasons the ...
1
vote
1answer
498 views

iOS: How to Render-To-1-channel-Texture in GLES2

I'm pretty sure now after hours of bashing that this cannot be done. This is my code so far (BELOW) for rendering to a texture; it does the job, but is very wasteful. I only want a single 8-bit ...
1
vote
1answer
439 views

glFramebufferTexture2D fails on iPhone for certain texture sizes

When I try to attach a texture to a framebuffer, glCheckFramebufferStatus reports GL_FRAMEBUFFER_UNSUPPORTED for certain texture sizes. I've tested on both a 2nd and 4th generation iPod Touch. The ...
1
vote
1answer
158 views

Understanding texture registers and samplers with optimising in mind

I have 3 different xna effects, one called initialise, one called iterate and one called finalise. Initialise takes no texture inputs, and renders to 3 targets. Iterate takes those 3 as texture ...
1
vote
1answer
271 views

Managed DirectX Postprocessing Fragment Shader rendering problem

I'm using Managed Direct X 2.0 with C# and I'm attempting to apply a fragment shader to a texture built by rendering the screen to a texture using the RenderToSurface helper class. The code I'm using ...
1
vote
2answers
1k views

DirectX 10 Draw Text to texture

I am atempting to draw text to a textured mesh object. The mesh is basically a cube which has been pasted up to the front of the screen. (overall I'm aiming for a menu system). After a bit of googling ...
1
vote
1answer
354 views

OpenGL ES render bitmap glyph as texture positioning issues

I'm just testing this stuff out, so I don't need an alternate approach (no GL extensions). Just hoping someone sees an obvious mistake in my usage of GLES. I want to take an bitmap of a glyph that is ...
1
vote
1answer
472 views

Image Processing on GPU- sucessive shaders for filters - FBO

I'm currently trying to implement in OpenGL image processing algorithms. I would like to successively use several shaders in order to perform several filters (Sobel Gaussian,...). I understood that ...
1
vote
0answers
684 views

another question about OpenGL ES rendering to texture

Here is another question about rendering to texture. The whole stuff is all about saving texture between passing image into different filters. Maybe all iPhone developers knows about Apple's sample ...
1
vote
1answer
689 views

Rendering OpenGL FBO Texture to GLXPixmap

I'm writing some code which is intended to: 1. Render into an OpenGL texture using an FBO. 2. Draw from the FBO texture to a GLXPixmap, which is attached to an X Pixmap. 3. Draw the X Pixmap to a ...
1
vote
1answer
4k views

Android OpenGLES Render-to-Texture

I write graphics apps for the iPhone and I'm looking to port my most recent app, 'Layers,' to the Android platform. Layers is painting app that allows users to draw on the screen and create ...
1
vote
1answer
739 views

OpenGL with FBO RTT, blending when it shouldn't

This should be really simple, but it's consumed multi-hours of my time, and I have no clue what's going on. I'm rendering a flat-colored full-screen quad to a texture, then reading back the result ...
1
vote
3answers
654 views

Image blending problem when rendering to texture

This is related to my last question. To get this image: I draw a white background (color = (1, 1, 1, 1)). I render-to-texture the two upper-left squares with color = (1, 0, 0, .8) and blend ...
0
votes
0answers
10 views

How do I render a single object to texture in Ogre?

How to render a single object to a texture in Ogre? There seem to be many ways to do it (setVisibilityFlags, manualRender, etc), how do they compare?
0
votes
1answer
29 views

Rendering to a Texture vs Rendering to CAEAGLLayer-backed view?

I have a very loose grasp of the OpenGL environment, so this is something I'm trying to understand. Could someone explain in lay terms what is the difference between these two styles of rendering? ...
0
votes
1answer
55 views

How to read a 3D texture from GPU memory with Pixel Buffer Objects

The title says it all... I'm writing data into a 3D texture from within a fragment shader, and I need to asynchronously read back said data into system memory. The only means of asynchronously ...
0
votes
1answer
50 views

Issue with transparency while drawing with RenderToSurface

I am facing issue while drawing semitransparent object with RenderToSurface(While it working file when i am drawing object direct on device). Issue is when i m drawing a object with Alpha value 50% on ...
0
votes
1answer
41 views

Reusing a render target “spills paint”?

I have some code that goes like this: GraphicsDevice.SetRenderTarget(0, myRenderTarget); GraphicsDevice.Clear(Color.Black); spriteBatch.Begin(SpriteBlendMode.AlphaBlend, ...
0
votes
0answers
156 views

Trying To Render Scene To FBO Returns White

So this is what I'm trying to do. I'm trying to make a 2d game using LWJGL that has a dynamically generated terrain using images as tiles. It works fine, but when I try to do a zoom, the tiles get a ...
0
votes
1answer
176 views

parameters for glOrtho for screen size quad in cocos2dx

I am creating a render texture of 2048x2048 and rendering a sprite of size 2048x2048 over it covering the whole render texture. How is the parameters for glOrtho(..) calculated? glOrtho((float)-1.0f , ...
0
votes
2answers
202 views

When does XNA discard Render Target contents?

I understand that Render Targets in XNA are volatile, but how volatile are they? I can't find any documentation that tells when exactly their contents are discarded. Is it just when you start drawing ...
0
votes
2answers
168 views

Measure Render-To-Texture Performance in OpenGL ES 2.0

Basically, I'm doing some sort of image processing using a screen-sized rectangle made of two triangles and a fragment shader, which is doing the whole processing stuff. The actual effect is something ...
0
votes
0answers
57 views

DirectX: Drawing Components to Their Own Textures

I've got a few layout classes in an application of mine, and a few of them are layout/container classes that arrange contained components in a certain fashion. By the nature of this arrangement, when ...
0
votes
0answers
184 views

GLES2.0 RTT(render to texture): How to enumerate destination texture formats in GLES2?

I have just been using this code: http://pastie.org/1944600 to blur a source texture onto a destination texture. I really wanted to create my destination texture as Alpha only, but it would only work ...
0
votes
2answers
95 views

Drawing per-pixel into a backbuffer or texture to display to screen, using opengl - no glDrawPixels()

Basically, I have an array of data (fluid simulation data) which is generated per-frame in real-time from user input (starts in system ram). I want to write the density of the fluid to a texture as an ...
0
votes
1answer
96 views

Render text into LPDIRECT3DTEXTURE9

How can one render some text on a texture and then display it? DirectX 10 Draw Text to texture This basically doesn't work for me. (it simply does not draw the text.) Thanks in advance.
0
votes
1answer
369 views

XNA - Render to a texture's alpha channel

I have a texture that I want to modify it's alpha channel in runtime. Is there a way to draw on a texture's alpha channel ? Or maybe replace the channel with that of another texture ? Thanks, SW.
0
votes
2answers
163 views

Is it possible to render a scene to multiple textures in a single pass with Xna?

I am wondering if it is possible to render a scene to multiple render targets in a single pass (or anything faster than drawing it several times through client code). I want to optimize some code that ...
0
votes
1answer
584 views

Advanced Text Rendering with Direct3D

Let me shortly describe the "battlefield" of my task: Multi-room audio/video chat with more than 1M users; Custom Direct3D renderer; What I need to implement is TextOverVideo feature. The Text ...

1 2