|
|
|
|
@ -894,7 +894,12 @@ class MeshVisualizerGL2D::Configuration {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES2 |
|
|
|
|
/** @brief Material count */ |
|
|
|
|
/**
|
|
|
|
|
* @brief Material count |
|
|
|
|
* |
|
|
|
|
* @requires_gles30 Not defined on OpenGL ES 2.0 builds. |
|
|
|
|
* @requires_webgl20 Not defined on WebGL 1.0 builds. |
|
|
|
|
*/ |
|
|
|
|
UnsignedInt materialCount() const { return _materialCount; } |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@ -919,7 +924,12 @@ class MeshVisualizerGL2D::Configuration {
|
|
|
|
|
return *this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** @brief Draw count */ |
|
|
|
|
/**
|
|
|
|
|
* @brief Draw count |
|
|
|
|
* |
|
|
|
|
* @requires_gles30 Not defined on OpenGL ES 2.0 builds. |
|
|
|
|
* @requires_webgl20 Not defined on WebGL 1.0 builds. |
|
|
|
|
*/ |
|
|
|
|
UnsignedInt drawCount() const { return _drawCount; } |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@ -2473,7 +2483,12 @@ class MeshVisualizerGL3D::Configuration {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES2 |
|
|
|
|
/** @brief Material count */ |
|
|
|
|
/**
|
|
|
|
|
* @brief Material count |
|
|
|
|
* |
|
|
|
|
* @requires_gles30 Not defined on OpenGL ES 2.0 builds. |
|
|
|
|
* @requires_webgl20 Not defined on WebGL 1.0 builds. |
|
|
|
|
*/ |
|
|
|
|
UnsignedInt materialCount() const { return _materialCount; } |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@ -2498,7 +2513,12 @@ class MeshVisualizerGL3D::Configuration {
|
|
|
|
|
return *this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** @brief Draw count */ |
|
|
|
|
/**
|
|
|
|
|
* @brief Draw count |
|
|
|
|
* |
|
|
|
|
* @requires_gles30 Not defined on OpenGL ES 2.0 builds. |
|
|
|
|
* @requires_webgl20 Not defined on WebGL 1.0 builds. |
|
|
|
|
*/ |
|
|
|
|
UnsignedInt drawCount() const { return _drawCount; } |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|