support glRaw

What it says on the tin: a place to discuss proposed new features.
Post Reply
RandomCitizen
Kobold
Posts: 26
Joined: Sat Jun 08, 2013 3:12 pm
x 2

support glRaw

Post by RandomCitizen »

There's a Library allowing to load tetxures from an openGL native texture format - to hae an dds equivalent of directX for openGL.

I think it would be nice if ogre would support this texture format.

http://www.geeks3d.com/20140303/opengl- ... eprecated/
DarioOli
Gnoblar
Posts: 6
Joined: Tue Aug 12, 2014 8:45 pm

Re: support glRaw

Post by DarioOli »

I implemented a KTX loader for my purposes (KTX is equipollent to dds, but have an open specification on khronos site). I could add it, but I fear that will be working only for OpenGL drivers (well including GLES). it may be possible that with some work it could be tweaked to read also for DX drivers ^^ (probably have to trial and error to see if DXT data need some special reordering for DX or not).. Also: certain compressed formats works only on certain devices.

Seems that KTX is not very used because no famous tool support it (nor Blender or Gimp) and because most people is happy enough with jpg and png despite glRaw, KTX has a official specification and more than one implementation (there's official implementation in C, mine implementation in C++ and several implementations for other languages including Java and C#).

KTX provide enough genericity to setup a texture unit in a complete way, but that is done directly without the creation of an image first (especially if the image is compressed with something like DXT or 3STC).
User avatar
dark_sylinc
OGRE Team Member
OGRE Team Member
Posts: 5292
Joined: Sat Jul 21, 2007 4:55 pm
Location: Buenos Aires, Argentina
x 1278
Contact:

Re: support glRaw

Post by dark_sylinc »

[s]I don't see this happening soon. DDS provides what is needed and is not really tied to DirectX at all. There's also no benefit on using ktx over dds (unless we were starting from scratch with no dds loader written yet, which isn't our case)
And as said, DDS has much more tool support.[/s]

Update: Scratch that, DDS doesn't have support for compressed formats like those needed by mobile (ETCn, PVRTC, etc). Support for it will be evaluated.
User avatar
Wolfmanfx
OGRE Team Member
OGRE Team Member
Posts: 1525
Joined: Fri Feb 03, 2006 10:37 pm
Location: Austria - Leoben
x 99
Contact:

Re: support glRaw

Post by Wolfmanfx »

we have already support for that codecs on mobile rendersystems.
Post Reply