mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-21 22:13:25 -06:00
Comment changes
p4#: 22507
This commit is contained in:
parent
187aa697fd
commit
058a2354c5
@ -752,7 +752,7 @@ T Array<T>::max(size_t* index) const
|
||||
///
|
||||
/// \param other Modifiable reference to the array that should have its contents swapped.
|
||||
///
|
||||
/// \warning Note that signature differs from normal CeeVizFramework practice. This is done to be
|
||||
/// \warning Note that signature differs from normal practice. This is done to be
|
||||
/// consistent with the signature of std::swap()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
template <typename T>
|
||||
|
@ -23,7 +23,7 @@
|
||||
#error No platform defined
|
||||
#endif
|
||||
|
||||
// Global include file with definitions useful for all CeeVizFramework files
|
||||
// Global include file with definitions useful for all library files
|
||||
|
||||
// Disable some annoying warnings so we can compile with warning level Wall
|
||||
#ifdef WIN32
|
||||
|
@ -18,12 +18,12 @@
|
||||
//##################################################################################################
|
||||
|
||||
// Doxygen module definition
|
||||
/// \ingroup CeeVizFramework
|
||||
/// \ingroup VizFramework
|
||||
/// @{
|
||||
/// \defgroup Core Core module
|
||||
/// @}
|
||||
|
||||
/// \defgroup CeeVizFramework CeeViz Framework Basis
|
||||
/// \defgroup VizFramework Framework Basis
|
||||
|
||||
// Intentionally on top to be included first
|
||||
#include "cvfBase.h"
|
||||
|
@ -354,7 +354,7 @@ bool ref<T>::operator<(const ref& rhs) const
|
||||
/// Swap the associated pointer in this and the passed ref object. Will not modify the reference
|
||||
/// count of any of the associated objects.
|
||||
///
|
||||
/// \warning Note that signature differs from normal CeeVizFramework practice. This is done to be
|
||||
/// \warning Note that signature differs from normal practice. This is done to be
|
||||
/// consistent with the signature of std::swap()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
template<typename T>
|
||||
|
@ -1533,7 +1533,7 @@ String String::arg(double a, int fieldWidth, char format, int precision, const w
|
||||
///
|
||||
/// \param other Modifiable reference to the string that should have its contents swapped.
|
||||
///
|
||||
/// \warning Note that signature differs from normal CeeVizFramework practice. This is done to be
|
||||
/// \warning Note that signature differs from normal practice. This is done to be
|
||||
/// consistent with the signature of std::swap()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void String::swap(String& other)
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
|
||||
// Doxygen module definition
|
||||
/// \ingroup CeeVizFramework
|
||||
/// \ingroup VizFramework
|
||||
/// @{
|
||||
/// \defgroup Geometry Geometry module
|
||||
/// @}
|
||||
|
@ -53,7 +53,7 @@ CvfBoundQGLContext::~CvfBoundQGLContext()
|
||||
{
|
||||
// TODO
|
||||
// Need to resolve the case where the Qt QGLcontext (that we're deriving from) is deleted
|
||||
// and CeeViz is still holding a reference to one or more OpenGLContext objects
|
||||
// and we are still holding a reference to one or more OpenGLContext objects
|
||||
// By the time we get here we expect that we're holding the only reference
|
||||
CVF_ASSERT(m_cvfGLContext->refCount() == 1);
|
||||
m_cvfGLContext = NULL;
|
||||
|
@ -28,7 +28,7 @@ namespace cvfqt {
|
||||
|
||||
//==================================================================================================
|
||||
//
|
||||
// Utility class used to piggyback our CeeViz OpenGLContext onto Qt's QGLContext
|
||||
// Utility class used to piggyback OpenGLContext onto Qt's QGLContext
|
||||
//
|
||||
//==================================================================================================
|
||||
class CvfBoundQGLContext : public QGLContext
|
||||
|
@ -32,7 +32,7 @@ namespace cvfqt {
|
||||
/// \class cvfqt::Utils
|
||||
/// \ingroup GuiQt
|
||||
///
|
||||
/// Static helper class for CeeViz/Qt interop
|
||||
/// Static helper class for Qt interop
|
||||
///
|
||||
//==================================================================================================
|
||||
|
||||
|
@ -28,7 +28,7 @@ namespace cvfqt {
|
||||
|
||||
//==================================================================================================
|
||||
//
|
||||
// Static helper class for CeeViz/Qt interop
|
||||
// Static helper class for Qt interop
|
||||
//
|
||||
//==================================================================================================
|
||||
class Utils
|
||||
|
@ -18,7 +18,7 @@
|
||||
//##################################################################################################
|
||||
|
||||
// Doxygen module definition
|
||||
/// \ingroup CeeVizFramework
|
||||
/// \ingroup VizFramework
|
||||
/// @{
|
||||
/// \defgroup Render Render module
|
||||
/// @}
|
||||
|
@ -132,7 +132,7 @@ void ConstantFrameRate::attachRendering(Rendering* rendering)
|
||||
RenderQueueSorterTargetFramerate* rqs = new RenderQueueSorterTargetFramerate;
|
||||
m_rendering->setRenderQueueSorter(rqs);
|
||||
|
||||
// Currently, we need to enable pixel size culling in order to get CeeViz to
|
||||
// Currently, we need to enable pixel size culling in order to
|
||||
// compute the screen projected areas of the part's bounding boxes
|
||||
m_rendering->cullSettings()->enablePixelSizeCulling(true);
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
//##################################################################################################
|
||||
|
||||
// Doxygen module definition
|
||||
/// \ingroup CeeVizFramework
|
||||
/// \ingroup VizFramework
|
||||
/// @{
|
||||
/// \defgroup Viewing Viewing module
|
||||
/// @}
|
||||
|
@ -318,7 +318,7 @@ void RenderSequence::preRenderApplyExpectedOpenGLState(OpenGLContext* oglContext
|
||||
|
||||
|
||||
// These settings differ from OpenGL defaults,
|
||||
// but form a suitable starting point for rendering with CeeViz
|
||||
// but form a suitable starting point for rendering
|
||||
// ------------------------------------------------
|
||||
|
||||
// TODO Work out a proper solution for this
|
||||
|
Loading…
Reference in New Issue
Block a user