The goal is to solve confusion of the "All rights reserved" for licensing
code under an open-source license.
The phrase "All rights reserved" comes from a historical convention that
required this phrase for the copyright protection to apply. This convention
is no longer relevant.
However, even though the phrase has no meaning in establishing the copyright
it has not lost meaning in terms of licensing.
This change makes it so code under the Blender Foundation copyright does
not use "all rights reserved". This is also how the GPL license itself
states how to apply it to the source code:
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software ...
This change does not change copyright notice in cases when the copyright
is dual (BF and an author), or just an author of the code. It also does
mot change copyright which is inherited from NaN Holding BV as it needs
some further investigation about what is the proper way to handle it.
45 lines
1014 B
C
45 lines
1014 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2014 Blender Foundation */
|
|
|
|
/** \file
|
|
* \ingroup gpu
|
|
*
|
|
* Selection implementations.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* gpu_select_pick */
|
|
|
|
void gpu_select_pick_begin(GPUSelectResult *buffer,
|
|
uint buffer_len,
|
|
const rcti *input,
|
|
eGPUSelectMode mode);
|
|
bool gpu_select_pick_load_id(uint id, bool end);
|
|
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(
|
|
GPUSelectResult *buffer, uint buffer_len, const rcti *input, eGPUSelectMode mode, int oldhits);
|
|
bool gpu_select_query_load_id(uint id);
|
|
uint gpu_select_query_end(void);
|
|
|
|
#define SELECT_ID_NONE ((uint)0xffffffff)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|