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

learn more… | top users | synonyms

0
votes
1answer
62 views

Render to texture in Delphi using OpenGL [closed]

I am making simple GUI for my not-so-simple OpenGL game. Since there is a big menu with a lot of control count, I grouped the controls and put them into different windows that could be accessed via ...
1
vote
1answer
59 views
+50

iOs OpenGL ES 2.0 adding textures with low opacity on device and on simulator

I have a problem with multiple drawing of textures in my program. Blending mode is glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_ONE, GL_ONE_MINUS_SRC_ALPHA); ...
0
votes
1answer
36 views

OpenGL ping ponging with two textures on the same framebuffer

I'm trying to render to two textures, rendering from the first to the second, and then from the second to the first etc. The problem is that when I'm rendering the first texture to the second, it ...
1
vote
1answer
48 views

Copying render target data to D3DPOOL_MANAGED?

I'm using an engine which utilizes DirectX9. It creates it's render targets using: D3DXCreateTexture( pD3DDevice, width, height, 1, D3DUSAGE_RENDERTARGET, D3DFMT_X8R8G8B8, ...
3
votes
0answers
72 views

Certain framebuffer sizes fail on iOS devices (GL_FRAMEBUFFER_UNSUPPORTED)

I ran into a problem yesterday when trying to create a framebuffer of size 256x8 - on iOS devices (tested on iPad 3, iPhone 4 & iPad Mini) certain sizes will fail with GL_FRAMEBUFFER_UNSUPPORTED. ...
2
votes
0answers
54 views

Using 3D animation and Texture Rendering with OpenGL

I am using a 3D animation (CCLens3d) and a lightning effect which uses OpenGL rendering (I might be wrong so please check the example project).. Lightning project can be found here. If I don't use my ...
0
votes
0answers
92 views

Managed DirectX 9.0c: Using dynamically created texture with a shader

I am very new to DirectX and 3D graphics programming in general, and I find myself in a position of having to expand some previously written Managed DirectX code. To put it simply, we have many 3D ...
0
votes
0answers
79 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
142 views

Direct3D: Creating a render target view from a texture

I would like to create a render target view from a texture, for use in multiple target rendering. I am currently able to create a render target view for the back buffer - all of that works nicely. ...
0
votes
0answers
121 views

“render to texture” always black with GLEW+GLFW

I am having trouble when using GLEW + GLFW... The order I use is: Load GLFW and open the Window Init GLEW Compile shaders Create texture Create framebuffer This is all the flow of my code: if( ...
0
votes
1answer
82 views

Regarding render to texture

i am implementing render to texture concept and have doubt regarding scope of a FBOs. After i am done with glDrawArrays call on default FBO with render to texture, i am deleting texture and non ...
1
vote
1answer
234 views

Render texture and normalized view rect in Unity

I'm using Unity 3D 3.5 pro. I've got this scene with two cameras in it. One of them is looking at a plane that has a render texture on it. The other is recording the render texture. When the camera ...
0
votes
1answer
69 views

How to use texture as depth attachment?

I have a framebuffer with multiple render targets. All of them are textures and not renderbuffers. How can I use the A component of a RGBA texture as depth attachment? I want to use the default depth ...
0
votes
0answers
165 views

OpenGL ES can't make LUMINANCE FBO work in Android

I'm using framebuffers to do some post processing shaders on a video renderer. One of the shaders is quite look-up intensive so I would like to change to a luminance only frame buffer to speed things ...
0
votes
0answers
265 views

Opengl - Unbinding framebuffer clears attached textures

I am having some trouble rendering to textures for later use. Currently, I am generating a framebuffer object, creating two textures (one RGB and one DEPTH_COMPONENT), attaching the two textures, ...
3
votes
1answer
680 views

glClear() gives GL_OUT_OF_MEMORY on Intel HD 4000 (GL 4.0) but not GeForce (GL 4.2)… why?

Now, this is an extremely odd behavior. TL;DR -- in a render-to-texture setup, upon resizing the window (framebuffer 0) only the very next call to glClear(GL_COLOR_BUFFER_BIT) for bound framebuffer 0 ...
2
votes
0answers
280 views

DX11 Alpha blending when rendering to a texture

FINAL EDIT: Resolved... just needed to learn how alpha blending works in-depth. I should have had: oBlendStateDesc.RenderTarget[a].DestBlendAlpha = D3D11_BLEND_ZERO; ...set to D3D11_BLEND_ONE to ...
1
vote
1answer
178 views

Can Direct3D 11 do offscreen-only rendering (no swap chain)?

Is it possible to use Direct3D 11 for rendering to textures only, i.e. without creating a swap chain and without creating any window? I have tried that and all my API calls succeed. The only problem ...
0
votes
0answers
139 views

glFramebufferTexture2D gives corruption with cube map textures

I am using glFramebufferTexture2D with cube map textures but it gives corruption in texture. draw_cube() function works perfectly when i draw that on default framebuffer. GLfloat vertices[]= ...
0
votes
1answer
206 views

OpenGL depth texture artifacts

I'm implementing shadow mapping for my little 3d engine. However, there seem to be artifacts in the depth texture, which can be seen by using the texture and observing the shadows, or drawing the ...
1
vote
1answer
209 views

Render to texture, but how to save it with transparency using DirectX?

I'm using DirectX 11 SDK and render something to the texture (and it's works). Than use D3DX11SaveTextureToFile to save the output to the PNG texture. Everything works, but I don't get transparency. ...
0
votes
3answers
302 views

Texture2D render image

What is the fastest possible way to fill a Texture2D with image? Under /Images/image.png I have the desired image. My existing code just fills the texture with white color. How can I make it render ...
0
votes
1answer
477 views

How to render a texture in DirectX 11 and transfer the texture to regular memory?

I wanna render an image to a texture taking advantage of DirectX acceleration. But instead of showing that image on the screen, I wanna get this image back to the regular memory as a bitmap to do ...
0
votes
0answers
55 views

Unexpected behaviour with glFramebufferTexture1D

I am using render to texture concept with glFramebufferTexture1D. I am drawing a cube on non-default FBO with all the vertices as -1,1 (maximum) in X Y Z direction. Now i am setting viewport to X ...
0
votes
1answer
235 views

glFramebufferTexture2D with cube map textures

I am trying to use render to texture concept with cube map textures but somehow texture is not getting applied to geometry in draw call. Here is my code #define WIDTH 64 #define HEIGHT 64 ...
0
votes
0answers
231 views

How to render the depth buffer into an image in OSG?

I'm implementing a special navigation technique in OpenSceneGraph. For that purpose I need to know the position and the distance to the camera of the fragment which is closest to the camera. My plan ...
0
votes
1answer
427 views

iphone - Cocos2d puzzle game ,how to solve piece position?

i need help with my first app with cocos2d, I'm trying to develop puzzle game, the game has image pieces and it's transparent background , and i need to match thees peices to the correct ...
1
vote
1answer
228 views

THREE.js: get data from THREE.WebGLRenderTarget

A THREE.Texture can be used as a map in a material and has a property called "image". A THREE.WebGLRenderTarget can be used as a map in a material but does not have a property called "image". How ...
2
votes
1answer
140 views

Attaching integer textures to a framebuffer

I'm trying to attach a texture with internal format GL_R32UI to a framebuffer, to be used as an ID-buffer. However, glCheckFramebufferStatus keeps coming up with GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, ...
1
vote
2answers
376 views

How to use glReadPixels() to return resized image from FBO?

Shortly: I need a quick way to resize the buffer image and then return the pixels to me to save them to file etc. Currently I first use glReadPixels(), and then I go through the pixels myself to ...
0
votes
0answers
247 views

OpenGL ES - glReadPixels vs TextureCached

I need to read the pixel data from the frame buffer in OpenGL ES 2.0. I know that can be done easily with glReadPixels but since iOS 5 we can use the TextureCached objects for faster reading. I have ...
-1
votes
1answer
817 views

lwjgl and render to texture

I need to be able to render to a texture, then draw that texture to a full screen quad. By blatantly copying lwjgl tutorials I was able to make a textured and moving quad, but I can't make it render ...
1
vote
1answer
901 views

Rendering to multiple textures with one pass in directx 11

I'm trying to render to two textures with one pass using C++ directx 11 SDK. I want one texture to contain the color of each pixel of the result image (what I normally see on the screen when rendering ...
1
vote
2answers
780 views

Creating and blending a dynamic texture in OpenGL

I need to render a sphere to a texture (done using a Framebuffer Object (FBO)), and then alpha blend that texture with the back buffer. So far I'm not doing any processing with the texture except ...
0
votes
1answer
284 views

Why does glGetTexImage transfer all mipmap textures even if only the 1x1 mipmap level is requested?

I render to a floating point texture in a FBO and need the average value of all pixels of that texture on the CPU. So I thought using mipmapping to calculate the average into the 1x1 mipmap is pretty ...
0
votes
0answers
165 views

OpenGL framebuffer flipped [closed]

I am using OpenGL ES 2.0 framebuffer objects for multi-pass rendering using ping-pong framebuffers. This works fine but every even frame is flipped around the horizontal axis, e.g. texture 1 (source) ...
3
votes
1answer
522 views

How to load a texture onto a circle with OpenGL ES

I am facing problems on loading a texture onto a circle. My circle is made with a triangle fan. It gives a bad output. Original Image: The Result : My code: public class MyOpenGLCircle { ...
0
votes
1answer
141 views

glOrtho and RenderToTexture

I want to render an orthographic projection into texture. The rendering of the mesh is working good, but when I add the FrameBuffer the screen stays black. Create the FBO: def createFBO(self): ...
1
vote
1answer
231 views

How to set on texture on top of another texture in android using OPEN GL

I have been searching for this for the pass two days .I am developing an android game using Open GL in which there is a situation where i have to display two images at the same time, one should be the ...
0
votes
1answer
215 views

Cocos2d-x load a very large image

I have to load a very large image(which format is png) to my game as the background, and the game is developed in cocos2d-x. The question is if i keep the image in the memory it will take too much ...
0
votes
0answers
240 views

Weird behavior with OpenGL ES2.0 Framebuffer render to texture

I'm trying to render to a texture in OpenGL ES2.0 using C++ - I am successfully using very similar code elseware in our mobile game. Here I see something flash up on the texture when I render it but 1 ...
0
votes
1answer
335 views

GPGPU - effective ping-pong technique?

I'm trying to implement effective fluid solver on the GPU using WebGL and GLSL shader programming. I've found interesting article: http://http.developer.nvidia.com/GPUGems/gpugems_ch38.html See: ...
3
votes
1answer
165 views

Image Texture vs Color in 3D objects for Android OpenGL ES?

Is there any difference in terms of rendering overhead, if we simply use a color (e.g., green) or load a texture image file (e.g., green.png file) for a 3D object? Shouldn't the OpenGL ES finally ...
1
vote
1answer
197 views

Render To Texture & Trails Not Disappearing

I am trying to implement fireworks with point sprites and then drawing trails by rendering the fireworks to two different textures, and then drawing them back to each other every second time with ...
1
vote
2answers
170 views

OpenGL display textures correctly

I'm rendering textures on the two surfaces which actually have the same location and position. In these kind of cases I want to display only one of the textures, while I get following I.e. I want ...
0
votes
1answer
378 views

CCSprite.draw doesn't work on CCRenderTexture in thread (iOS cocos2d 2.0 rc2)

I'm trying to draw onto a CCRenderTexture in a thread. I've got: EAGLSharegroup *sharegroup = [[[[CCDirector sharedDirector] openGLView] context] sharegroup]; EAGLContext *k_context = [[EAGLContext ...
0
votes
1answer
104 views

Fastest way to blur everything around a point in postprocess

I am using Ogre3D and it's compositors. Basically, I am wondering what will be the fastest way to blur everything around a dynamic point in the viewport. The point is given by the 2D screen ...
0
votes
1answer
363 views

HLSL multiple passes to blur (RTT?)

I try to build up a complex water shader ( i got the water shader from an example in the internet ). Now i want to add some features, blend a pattern grid into the water which is blured. Atm the water ...
0
votes
0answers
119 views

getting part of the (already rendered) screen as texture

I'm making an android opengl es 2d app, and trying to use a part of my rendered screen as a texture for a billboard. so far, i had partial success with glCopyTexSubImage - it only works on some ...
1
vote
1answer
292 views

Multi-pass shading using render-to-texture

I'm trying to implement a multi-pass rendering method using OpenSceneGraph. However, I'm not entirely certain my problem is theoretical or due to a lack of applied knowledge of OSG. Thus far, I've ...

1 2 3