mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0031175: Visualization - support dumping RED channel as grayscale image
Graphic3d_BufferType has been extended by Graphic3d_BT_Red.
This commit is contained in:
parent
8f00325d73
commit
4eff0c0480
@ -15,12 +15,13 @@
|
|||||||
#define _Graphic3d_BufferType_H__
|
#define _Graphic3d_BufferType_H__
|
||||||
|
|
||||||
//! Define buffers available for dump
|
//! Define buffers available for dump
|
||||||
typedef enum
|
enum Graphic3d_BufferType
|
||||||
{
|
{
|
||||||
Graphic3d_BT_RGB, //!< color buffer without alpha component
|
Graphic3d_BT_RGB, //!< color buffer without alpha component
|
||||||
Graphic3d_BT_RGBA, //!< color buffer
|
Graphic3d_BT_RGBA, //!< color buffer
|
||||||
Graphic3d_BT_Depth, //!< depth buffer
|
Graphic3d_BT_Depth, //!< depth buffer
|
||||||
Graphic3d_BT_RGB_RayTraceHdrLeft //!< left view HDR color buffer for Ray-Tracing
|
Graphic3d_BT_RGB_RayTraceHdrLeft, //!< left view HDR color buffer for Ray-Tracing
|
||||||
} Graphic3d_BufferType;
|
Graphic3d_BT_Red, //!< color buffer, red channel
|
||||||
|
};
|
||||||
|
|
||||||
#endif // _Graphic3d_BufferType_H__
|
#endif // _Graphic3d_BufferType_H__
|
||||||
|
@ -779,11 +779,11 @@ Standard_Boolean OpenGl_FrameBuffer::BufferDump (const Handle(OpenGl_Context)& t
|
|||||||
{
|
{
|
||||||
#if !defined(GL_ES_VERSION_2_0)
|
#if !defined(GL_ES_VERSION_2_0)
|
||||||
case Image_Format_Gray:
|
case Image_Format_Gray:
|
||||||
aFormat = GL_DEPTH_COMPONENT;
|
aFormat = theBufferType == Graphic3d_BT_Depth ? GL_DEPTH_COMPONENT : GL_RED;
|
||||||
aType = GL_UNSIGNED_BYTE;
|
aType = GL_UNSIGNED_BYTE;
|
||||||
break;
|
break;
|
||||||
case Image_Format_GrayF:
|
case Image_Format_GrayF:
|
||||||
aFormat = GL_DEPTH_COMPONENT;
|
aFormat = theBufferType == Graphic3d_BT_Depth ? GL_DEPTH_COMPONENT : GL_RED;
|
||||||
aType = GL_FLOAT;
|
aType = GL_FLOAT;
|
||||||
break;
|
break;
|
||||||
case Image_Format_RGF:
|
case Image_Format_RGF:
|
||||||
|
@ -2700,6 +2700,7 @@ Standard_Boolean V3d_View::ToPixMap (Image_PixMap& theImage,
|
|||||||
case Graphic3d_BT_RGBA: aFormat = Image_Format_RGBA; break;
|
case Graphic3d_BT_RGBA: aFormat = Image_Format_RGBA; break;
|
||||||
case Graphic3d_BT_Depth: aFormat = Image_Format_GrayF; break;
|
case Graphic3d_BT_Depth: aFormat = Image_Format_GrayF; break;
|
||||||
case Graphic3d_BT_RGB_RayTraceHdrLeft: aFormat = Image_Format_RGBF; break;
|
case Graphic3d_BT_RGB_RayTraceHdrLeft: aFormat = Image_Format_RGBF; break;
|
||||||
|
case Graphic3d_BT_Red: aFormat = Image_Format_Gray; break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!theImage.InitZero (aFormat, Standard_Size(aTargetSize.x()), Standard_Size(aTargetSize.y())))
|
if (!theImage.InitZero (aFormat, Standard_Size(aTargetSize.x()), Standard_Size(aTargetSize.y())))
|
||||||
|
@ -1157,6 +1157,10 @@ static Standard_Integer VDump (Draw_Interpretor& theDI,
|
|||||||
{
|
{
|
||||||
aParams.BufferType = Graphic3d_BT_RGB;
|
aParams.BufferType = Graphic3d_BT_RGB;
|
||||||
}
|
}
|
||||||
|
else if (aBufArg == "red")
|
||||||
|
{
|
||||||
|
aParams.BufferType = Graphic3d_BT_Red;
|
||||||
|
}
|
||||||
else if (aBufArg == "depth")
|
else if (aBufArg == "depth")
|
||||||
{
|
{
|
||||||
aParams.BufferType = Graphic3d_BT_Depth;
|
aParams.BufferType = Graphic3d_BT_Depth;
|
||||||
@ -1223,6 +1227,11 @@ static Standard_Integer VDump (Draw_Interpretor& theDI,
|
|||||||
{
|
{
|
||||||
aParams.BufferType = Graphic3d_BT_RGB;
|
aParams.BufferType = Graphic3d_BT_RGB;
|
||||||
}
|
}
|
||||||
|
else if (anArg == "-red"
|
||||||
|
|| anArg == "red")
|
||||||
|
{
|
||||||
|
aParams.BufferType = Graphic3d_BT_Red;
|
||||||
|
}
|
||||||
else if (anArg == "-depth"
|
else if (anArg == "-depth"
|
||||||
|| anArg == "depth")
|
|| anArg == "depth")
|
||||||
{
|
{
|
||||||
@ -1303,6 +1312,7 @@ static Standard_Integer VDump (Draw_Interpretor& theDI,
|
|||||||
case Graphic3d_BT_RGBA: aFormat = Image_Format_RGBA; break;
|
case Graphic3d_BT_RGBA: aFormat = Image_Format_RGBA; break;
|
||||||
case Graphic3d_BT_Depth: aFormat = Image_Format_GrayF; break;
|
case Graphic3d_BT_Depth: aFormat = Image_Format_GrayF; break;
|
||||||
case Graphic3d_BT_RGB_RayTraceHdrLeft: aFormat = Image_Format_RGBF; break;
|
case Graphic3d_BT_RGB_RayTraceHdrLeft: aFormat = Image_Format_RGBF; break;
|
||||||
|
case Graphic3d_BT_Red: aFormat = Image_Format_Gray; break;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (aStereoPair)
|
switch (aStereoPair)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user