clip comments

This commit is contained in:
h4570
2022-08-01 18:37:49 +02:00
parent 74668fba34
commit cdadb932b7
3 changed files with 4 additions and 4 deletions
@@ -41,8 +41,8 @@ class MinecraftPipeline : public Renderer3DPipeline {
* @param count number of blocks to render * @param count number of blocks to render
* @param t_tex texture to use * @param t_tex texture to use
* @param isMulti is this a 6 texture voxel? * @param isMulti is this a 6 texture voxel?
* @param fullClipChecks false = faster, simple PS2 clipping. True = slower * @param fullClipChecks false = faster, simple PS2 clipping. True = slower,
* "against each plane" clipping. * experimental "against each plane" clipping.
*/ */
void render(McpipBlock* blocks, const u32& count, Texture* t_tex, void render(McpipBlock* blocks, const u32& count, Texture* t_tex,
const bool& isMulti = false, const bool& fullClipChecks = false); const bool& isMulti = false, const bool& fullClipChecks = false);
@@ -34,7 +34,7 @@ class PipelineInfoBag {
bool antiAliasingEnabled; bool antiAliasingEnabled;
/** /**
* @brief False -> disables "clip against each plane" algorithm. * @brief Experimental! False -> disables "clip against each plane" algorithm.
* Default: True. * Default: True.
* *
* Full clip checks are slow, but they are * Full clip checks are slow, but they are
@@ -20,7 +20,7 @@ class StaPipOptions : public PipelineOptions {
~StaPipOptions() {} ~StaPipOptions() {}
/** /**
* @brief True -> enables "clip against each plane" algorithm. * @brief Experimental! True -> enables "clip against each plane" algorithm.
* Mandatory, default: False. * Mandatory, default: False.
* *
* Full clip checks are slow, but they are * Full clip checks are slow, but they are