forked from blender/blender
WIP: uv-simple-select #1
@ -520,7 +520,6 @@ void CustomData_bmesh_free_block_data_exclude_by_type(struct CustomData *data,
|
|||||||
void *block,
|
void *block,
|
||||||
eCustomDataMask mask_exclude);
|
eCustomDataMask mask_exclude);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Query info over types.
|
* Query info over types.
|
||||||
*/
|
*/
|
||||||
|
@ -92,4 +92,3 @@ TEST(nla_track, BKE_nlatrack_remove_strip)
|
|||||||
}
|
}
|
||||||
|
|
||||||
} // namespace blender::bke::tests
|
} // namespace blender::bke::tests
|
||||||
|
|
||||||
|
@ -21,8 +21,7 @@ void main()
|
|||||||
float light_count = 0.0;
|
float light_count = 0.0;
|
||||||
uint light_cull = 0u;
|
uint light_cull = 0u;
|
||||||
vec2 px = gl_FragCoord.xy;
|
vec2 px = gl_FragCoord.xy;
|
||||||
LIGHT_FOREACH_BEGIN_LOCAL(light_cull_buf, light_zbin_buf, light_tile_buf, px, vP_z, l_idx)
|
LIGHT_FOREACH_BEGIN_LOCAL (light_cull_buf, light_zbin_buf, light_tile_buf, px, vP_z, l_idx) {
|
||||||
{
|
|
||||||
LightData light = light_buf[l_idx];
|
LightData light = light_buf[l_idx];
|
||||||
light_cull |= 1u << l_idx;
|
light_cull |= 1u << l_idx;
|
||||||
light_count += 1.0;
|
light_count += 1.0;
|
||||||
|
@ -4059,8 +4059,7 @@ void GPENCIL_OT_reproject(wmOperatorType *ot)
|
|||||||
ot->prop = RNA_def_enum(
|
ot->prop = RNA_def_enum(
|
||||||
ot->srna, "type", reproject_type, GP_REPROJECT_VIEW, "Projection Type", "");
|
ot->srna, "type", reproject_type, GP_REPROJECT_VIEW, "Projection Type", "");
|
||||||
|
|
||||||
prop = RNA_def_boolean(
|
prop = RNA_def_boolean(ot->srna,
|
||||||
ot->srna,
|
|
||||||
"keep_original",
|
"keep_original",
|
||||||
0,
|
0,
|
||||||
"Keep Original",
|
"Keep Original",
|
||||||
|
@ -55,7 +55,8 @@ constexpr VkAllocationCallbacks vk_allocation_callbacks_init(const char *name)
|
|||||||
# define VK_ALLOCATION_CALLBACKS \
|
# define VK_ALLOCATION_CALLBACKS \
|
||||||
static constexpr const VkAllocationCallbacks vk_allocation_callbacks_ = \
|
static constexpr const VkAllocationCallbacks vk_allocation_callbacks_ = \
|
||||||
vk_allocation_callbacks_init(__func__); \
|
vk_allocation_callbacks_init(__func__); \
|
||||||
static constexpr const VkAllocationCallbacks *vk_allocation_callbacks = &vk_allocation_callbacks_;
|
static constexpr const VkAllocationCallbacks *vk_allocation_callbacks = \
|
||||||
|
&vk_allocation_callbacks_;
|
||||||
#else
|
#else
|
||||||
# define VK_ALLOCATION_CALLBACKS \
|
# define VK_ALLOCATION_CALLBACKS \
|
||||||
static constexpr const VkAllocationCallbacks *vk_allocation_callbacks = nullptr;
|
static constexpr const VkAllocationCallbacks *vk_allocation_callbacks = nullptr;
|
||||||
|
@ -16,10 +16,10 @@
|
|||||||
#include <pxr/pxr.h>
|
#include <pxr/pxr.h>
|
||||||
#include <pxr/usd/usd/primRange.h>
|
#include <pxr/usd/usd/primRange.h>
|
||||||
#include <pxr/usd/usdGeom/camera.h>
|
#include <pxr/usd/usdGeom/camera.h>
|
||||||
#include <pxr/usd/usdGeom/curves.h>
|
|
||||||
#include <pxr/usd/usdGeom/capsule.h>
|
#include <pxr/usd/usdGeom/capsule.h>
|
||||||
#include <pxr/usd/usdGeom/cone.h>
|
#include <pxr/usd/usdGeom/cone.h>
|
||||||
#include <pxr/usd/usdGeom/cube.h>
|
#include <pxr/usd/usdGeom/cube.h>
|
||||||
|
#include <pxr/usd/usdGeom/curves.h>
|
||||||
#include <pxr/usd/usdGeom/cylinder.h>
|
#include <pxr/usd/usdGeom/cylinder.h>
|
||||||
#include <pxr/usd/usdGeom/mesh.h>
|
#include <pxr/usd/usdGeom/mesh.h>
|
||||||
#include <pxr/usd/usdGeom/nurbsCurves.h>
|
#include <pxr/usd/usdGeom/nurbsCurves.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user