Files
test2/source/blender/gpu/intern/gpu_select_private.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.3 KiB
C
Raw Normal View History

/* SPDX-FileCopyrightText: 2014 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup gpu
*
* Selection implementations.
*/
2017-03-12 02:40:04 +11:00
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/* gpu_select_pick */
void gpu_select_pick_begin(GPUSelectBuffer *buffer, const rcti *input, eGPUSelectMode mode);
bool gpu_select_pick_load_id(uint id, bool end);
2018-09-12 12:18:35 +10:00
uint gpu_select_pick_end(void);
void gpu_select_pick_cache_begin(void);
void gpu_select_pick_cache_end(void);
/**
* \return true if drawing is not needed.
*/
bool gpu_select_pick_is_cached(void);
void gpu_select_pick_cache_load_id(void);
/* gpu_select_sample_query */
void gpu_select_query_begin(GPUSelectBuffer *buffer,
const rcti *input,
eGPUSelectMode mode,
int oldhits);
2018-09-12 12:18:35 +10:00
bool gpu_select_query_load_id(uint id);
uint gpu_select_query_end(void);
/* gpu_select_next */
void gpu_select_next_begin(GPUSelectBuffer *buffer, const rcti *input, eGPUSelectMode mode);
uint gpu_select_next_end(void);
/* Return a single offset since picking uses squared viewport. */
int gpu_select_next_get_pick_area_center(void);
eGPUSelectMode gpu_select_next_get_mode(void);
void gpu_select_next_set_result(GPUSelectResult *buffer, uint buffer_len);
2018-09-12 12:18:35 +10:00
#define SELECT_ID_NONE ((uint)0xffffffff)
#ifdef __cplusplus
}
2020-10-02 09:48:41 +10:00
#endif