Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGermano Cavalcantemano-wii <germano.costa@ig.com.br>2021-01-11 03:05:17 +0300
committerGermano Cavalcantemano-wii <germano.costa@ig.com.br>2021-01-11 03:07:04 +0300
commitaf88d23ffaab650f050886afc7595a8f6bff08b8 (patch)
tree92ad61d638000bd18d816438c7ae2a8a981eae2f /source/blender/python/gpu/gpu_py_framebuffer.h
parentd4330ae70be6a924d40ae7efccb988d51109c5c4 (diff)
Revert "Fix typo; Documentation; Expose layer for framebuffer attachament; Add framebuffer viewport setter; Remove framebuffer restore; Expose framebuffer push/pop stack API; Remove blend modes; Remove depth_range_set; Implement GPU_face_culling, GPU_front_facing, GPU_point_size, GPU_line_width, GPU_viewport, GPU_color_mask and GPU_depth_mask"
This reverts commit 9db3d1951da15254efbbcf028176facb78118ec1. This was an accidental commit of the patch D8826
Diffstat (limited to 'source/blender/python/gpu/gpu_py_framebuffer.h')
-rw-r--r--source/blender/python/gpu/gpu_py_framebuffer.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/source/blender/python/gpu/gpu_py_framebuffer.h b/source/blender/python/gpu/gpu_py_framebuffer.h
deleted file mode 100644
index 5ddc1a91a67..00000000000
--- a/source/blender/python/gpu/gpu_py_framebuffer.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-
-/** \file
- * \ingroup bpygpu
- */
-
-#pragma once
-
-#include "BLI_compiler_attrs.h"
-
-extern PyTypeObject BPyGPUFrameBuffer_Type;
-
-#define BPyGPUFrameBuffer_Check(v) (Py_TYPE(v) == &BPyGPUFrameBuffer_Type)
-
-typedef struct BPyGPUFrameBuffer {
- PyObject_HEAD struct GPUFrameBuffer *fb;
-} BPyGPUFrameBuffer;
-
-PyObject *BPyGPUFrameBuffer_CreatePyObject(struct GPUFrameBuffer *fb) ATTR_NONNULL(1);
-PyObject *BPyInit_gpu_framebuffer(void);