Re: [Mesa3d-dev] Mesa texture format REV

2005-02-20 Thread Brian Paul
Vladimir Dergachev wrote: The reason I am asking is that R300 appears to support all (or almost all) GL texture formats and it would not be too difficult to add this support, but we are using R200 switch() due to lack of understanding of Mesa->driver interface. Well, even if the hardware does

Re: [Mesa3d-dev] Mesa texture format REV

2005-02-19 Thread Vladimir Dergachev
The reason I am asking is that R300 appears to support all (or almost all) GL texture formats and it would not be too difficult to add this support, but we are using R200 switch() due to lack of understanding of Mesa->driver interface. Well, even if the hardware does support all the present Mesa

Re: [Mesa3d-dev] Mesa texture format REV

2005-02-19 Thread Brian Paul
Vladimir Dergachev wrote: in the driver (r300) i really would like to test all texture format, so is there a way to ask mesa to send me texture in a specific order (REV or not) No. The parameter describes the incoming format of the user's texture image. It may or may not have any bearing on wh

Re: [Mesa3d-dev] Mesa texture format REV

2005-02-19 Thread Brian Paul
Jerome Glisse wrote: No. The parameter describes the incoming format of the user's texture image. It may or may not have any bearing on which hardware format is chosen by the driver. More typically, the parameter is used by the driver to choose the hardware texture format. I am standing from

Re: [Mesa3d-dev] Mesa texture format REV

2005-02-19 Thread Jerome Glisse
> No. The parameter describes the incoming format of the > user's texture image. It may or may not have any bearing on which > hardware format is chosen by the driver. More typically, the > parameter is used by the driver to choose the > hardware texture format. I am standing from the driver

Re: [Mesa3d-dev] Mesa texture format REV

2005-02-19 Thread Vladimir Dergachev
in the driver (r300) i really would like to test all texture format, so is there a way to ask mesa to send me texture in a specific order (REV or not) No. The parameter describes the incoming format of the user's texture image. It may or may not have any bearing on which hardware format is cho

Re: [Mesa3d-dev] Mesa texture format REV

2005-02-19 Thread Brian Paul
Jerome Glisse wrote: Hi, I wanted to know how i can ask mesa to give me the texture in a specified order. i.e. actually mesa give me texture in RGBA_REV while i want it in RGBA I have tried to have by specifing GL_UNSIGNED_INT_8_8_8_8_REV to the format parameter of glTexImage2D This effec