vote up 0 vote down star

I know mixing OpenGL and DirectX is not recommended but I'm trying to build a bridge between two different applications that use separate graphics API:s and I'm hoping there is a technique for sharing data, specifically textures.

I have a texture that is created in Direct3D like this:

d3_device-> CreateTexture(width, height,
  1, D3DUSAGE_RENDERTARGET, D3DFMT_A8R8G8B8, D3DPOOL_DEFAULT,
  &texture, NULL);

Is there any way I can use this texture from OpenGL without taking a roundtrip through system memory?

flag
1  
the only way I see this happening is if someone created an OpenGL implementation ON directX – reinier Oct 21 at 14:26

2 Answers

vote up 0 vote down

I think it is not possible. As both have different models of a texture.

You cannot access the texture memory directly without either directX or openGL.

Otherway around: If it is possible, you should be able to retrieve the texture address, its pitch, width and other (hardware dependant) memory layout informations and create a dummytexture in the other system and push the retrieved data into your just created texture object. This is not possible

Obviously, this will not work on any descend hardware, and if so it would not be very portable.

link|flag
vote up 1 vote down

No.

Think of it like sharing an image in photoshop and another image viewer. You would need a memory management library that those two applications shared.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.