2011-02-23 10:52:22 +00:00
|
|
|
/*
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
* 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
|
2011-11-29 10:54:47 +00:00
|
|
|
* of the License, or (at your option) any later version.
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
*
|
|
|
|
* 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,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2005 Blender Foundation.
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
* \ingroup gpu
|
2011-02-27 20:25:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
#ifndef __GPU_CODEGEN_H__
|
|
|
|
#define __GPU_CODEGEN_H__
|
|
|
|
|
2015-01-24 13:25:49 +01:00
|
|
|
#include "DNA_customdata_types.h"
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
#include "DNA_listBase.h"
|
2011-09-09 11:55:38 +00:00
|
|
|
#include "GPU_material.h"
|
2014-10-07 15:46:19 -05:00
|
|
|
#include "GPU_glew.h"
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
|
|
|
|
struct GPUNode;
|
2019-01-28 21:08:24 +11:00
|
|
|
struct GPUOutput;
|
|
|
|
struct GPUShader;
|
2019-01-29 07:46:25 +11:00
|
|
|
struct GPUVertAttrLayers;
|
2019-01-28 21:08:24 +11:00
|
|
|
struct ListBase;
|
2013-01-22 11:18:41 +00:00
|
|
|
struct PreviewImage;
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
|
|
|
|
/* Pass Generation
|
2018-11-14 12:53:15 +11:00
|
|
|
* - Takes a list of nodes and a desired output, and makes a pass. This
|
|
|
|
* will take ownership of the nodes and free them early if unused or
|
|
|
|
* at the end if used.
|
2012-03-09 18:28:30 +00:00
|
|
|
*/
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
|
2019-01-23 14:15:43 +11:00
|
|
|
typedef enum eGPUDataSource {
|
2018-08-13 18:44:27 +02:00
|
|
|
GPU_SOURCE_OUTPUT,
|
|
|
|
GPU_SOURCE_CONSTANT,
|
|
|
|
GPU_SOURCE_UNIFORM,
|
2019-01-29 07:46:25 +11:00
|
|
|
GPU_SOURCE_ATTR,
|
2011-09-09 11:55:38 +00:00
|
|
|
GPU_SOURCE_BUILTIN,
|
2018-08-13 18:44:27 +02:00
|
|
|
GPU_SOURCE_STRUCT,
|
2011-09-09 11:55:38 +00:00
|
|
|
GPU_SOURCE_TEX,
|
2019-01-23 14:15:43 +11:00
|
|
|
} eGPUDataSource;
|
2011-09-09 11:55:38 +00:00
|
|
|
|
2015-01-24 15:09:18 +01:00
|
|
|
typedef enum {
|
2018-08-13 18:44:27 +02:00
|
|
|
GPU_NODE_LINK_NONE = 0,
|
2019-01-29 07:46:25 +11:00
|
|
|
GPU_NODE_LINK_ATTR,
|
2018-08-13 18:44:27 +02:00
|
|
|
GPU_NODE_LINK_BUILTIN,
|
|
|
|
GPU_NODE_LINK_COLORBAND,
|
|
|
|
GPU_NODE_LINK_CONSTANT,
|
|
|
|
GPU_NODE_LINK_IMAGE_BLENDER,
|
|
|
|
GPU_NODE_LINK_OUTPUT,
|
|
|
|
GPU_NODE_LINK_UNIFORM,
|
|
|
|
} GPUNodeLinkType;
|
2015-01-24 15:09:18 +01:00
|
|
|
|
2011-09-09 11:55:38 +00:00
|
|
|
struct GPUNode {
|
|
|
|
struct GPUNode *next, *prev;
|
|
|
|
|
|
|
|
const char *name;
|
2015-01-24 15:20:26 +01:00
|
|
|
|
|
|
|
/* Internal flag to mark nodes during pruning */
|
|
|
|
bool tag;
|
2011-09-09 11:55:38 +00:00
|
|
|
|
|
|
|
ListBase inputs;
|
|
|
|
ListBase outputs;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct GPUNodeLink {
|
|
|
|
GPUNodeStack *socket;
|
|
|
|
|
2018-08-13 18:44:27 +02:00
|
|
|
GPUNodeLinkType link_type;
|
|
|
|
int users; /* Refcount */
|
|
|
|
|
|
|
|
union {
|
|
|
|
/* GPU_NODE_LINK_CONSTANT | GPU_NODE_LINK_UNIFORM */
|
|
|
|
float *data;
|
|
|
|
/* GPU_NODE_LINK_BUILTIN */
|
2019-01-23 14:15:43 +11:00
|
|
|
eGPUBuiltin builtin;
|
2018-08-13 18:44:27 +02:00
|
|
|
/* GPU_NODE_LINK_COLORBAND */
|
|
|
|
struct GPUTexture **coba;
|
|
|
|
/* GPU_NODE_LINK_OUTPUT */
|
|
|
|
struct GPUOutput *output;
|
2019-01-29 07:46:25 +11:00
|
|
|
/* GPU_NODE_LINK_ATTR */
|
2018-08-13 18:44:27 +02:00
|
|
|
struct {
|
2019-01-29 07:46:25 +11:00
|
|
|
const char *attr_name;
|
|
|
|
CustomDataType attr_type;
|
2018-08-13 18:44:27 +02:00
|
|
|
};
|
|
|
|
/* GPU_NODE_LINK_IMAGE_BLENDER */
|
|
|
|
struct {
|
|
|
|
struct Image *ima;
|
|
|
|
struct ImageUser *iuser;
|
|
|
|
bool image_isdata;
|
|
|
|
};
|
|
|
|
};
|
2011-09-09 11:55:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct GPUOutput {
|
|
|
|
struct GPUOutput *next, *prev;
|
|
|
|
|
|
|
|
GPUNode *node;
|
2019-01-23 14:15:43 +11:00
|
|
|
eGPUType type; /* data type = length of vector/matrix */
|
2015-03-23 15:29:42 -04:00
|
|
|
GPUNodeLink *link; /* output link */
|
|
|
|
int id; /* unique id as created by code generator */
|
2011-09-09 11:55:38 +00:00
|
|
|
} GPUOutput;
|
|
|
|
|
|
|
|
typedef struct GPUInput {
|
|
|
|
struct GPUInput *next, *prev;
|
|
|
|
|
|
|
|
GPUNode *node;
|
2019-01-23 14:15:43 +11:00
|
|
|
eGPUType type; /* datatype */
|
2018-08-13 18:44:27 +02:00
|
|
|
GPUNodeLink *link;
|
|
|
|
int id; /* unique id as created by code generator */
|
|
|
|
|
2019-01-23 14:15:43 +11:00
|
|
|
eGPUDataSource source; /* data source */
|
2015-03-23 15:29:42 -04:00
|
|
|
|
|
|
|
int shaderloc; /* id from opengl */
|
|
|
|
char shadername[32]; /* name in shader */
|
|
|
|
|
2019-01-23 14:15:43 +11:00
|
|
|
/* Content based on eGPUDataSource */
|
2018-08-13 18:44:27 +02:00
|
|
|
union {
|
|
|
|
/* GPU_SOURCE_CONSTANT | GPU_SOURCE_UNIFORM */
|
|
|
|
float vec[16]; /* vector data */
|
|
|
|
/* GPU_SOURCE_BUILTIN */
|
2019-01-23 14:15:43 +11:00
|
|
|
eGPUBuiltin builtin; /* builtin uniform */
|
2018-08-13 18:44:27 +02:00
|
|
|
/* GPU_SOURCE_TEX */
|
|
|
|
struct {
|
|
|
|
struct GPUTexture **coba; /* input texture, only set at runtime */
|
|
|
|
struct Image *ima; /* image */
|
|
|
|
struct ImageUser *iuser; /* image user */
|
|
|
|
bool image_isdata; /* image does not contain color data */
|
|
|
|
bool bindtex; /* input is responsible for binding the texture? */
|
|
|
|
int texid; /* number for multitexture, starting from zero */
|
2019-01-23 14:15:43 +11:00
|
|
|
eGPUType textype; /* texture type (2D, 1D Array ...) */
|
2018-08-13 18:44:27 +02:00
|
|
|
};
|
2019-01-29 07:46:25 +11:00
|
|
|
/* GPU_SOURCE_ATTR */
|
2018-08-13 18:44:27 +02:00
|
|
|
struct {
|
2019-01-29 07:46:25 +11:00
|
|
|
/** Attribute name. */
|
|
|
|
char attr_name[MAX_CUSTOMDATA_LAYER_NAME];
|
|
|
|
/** ID for vertex attributes. */
|
|
|
|
int attr_id;
|
|
|
|
/** This is the first one that is bound. */
|
|
|
|
bool attr_first;
|
|
|
|
/** Attribute type. */
|
|
|
|
CustomDataType attr_type;
|
2018-08-13 18:44:27 +02:00
|
|
|
};
|
|
|
|
};
|
2011-09-09 11:55:38 +00:00
|
|
|
} GPUInput;
|
|
|
|
|
|
|
|
struct GPUPass {
|
2018-06-07 11:58:15 +02:00
|
|
|
struct GPUPass *next;
|
|
|
|
|
2011-09-09 11:55:38 +00:00
|
|
|
struct GPUShader *shader;
|
|
|
|
char *fragmentcode;
|
2015-07-20 16:08:06 +02:00
|
|
|
char *geometrycode;
|
2011-09-09 11:55:38 +00:00
|
|
|
char *vertexcode;
|
2018-03-11 23:43:09 +01:00
|
|
|
char *defines;
|
2018-09-12 12:18:35 +10:00
|
|
|
uint refcount; /* Orphaned GPUPasses gets freed by the garbage collector. */
|
2018-03-11 23:43:09 +01:00
|
|
|
uint32_t hash; /* Identity hash generated from all GLSL code. */
|
2018-06-07 11:58:15 +02:00
|
|
|
bool compiled; /* Did we already tried to compile the attached GPUShader. */
|
2011-09-09 11:55:38 +00:00
|
|
|
};
|
|
|
|
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
typedef struct GPUPass GPUPass;
|
|
|
|
|
2018-09-19 19:34:00 +02:00
|
|
|
GPUPass *GPU_generate_pass(
|
2018-03-11 23:43:09 +01:00
|
|
|
GPUMaterial *material,
|
2019-01-29 07:46:25 +11:00
|
|
|
GPUNodeLink *frag_outlink, struct GPUVertAttrLayers *attrs,
|
2018-10-09 17:32:13 +02:00
|
|
|
ListBase *nodes, int *builtins,
|
2017-06-28 09:37:44 +10:00
|
|
|
const char *vert_code, const char *geom_code,
|
|
|
|
const char *frag_lib, const char *defines);
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
|
2018-06-07 11:58:15 +02:00
|
|
|
struct GPUShader *GPU_pass_shader_get(GPUPass *pass);
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
|
2018-06-07 11:58:15 +02:00
|
|
|
void GPU_nodes_extract_dynamic_inputs(struct GPUShader *shader, ListBase *inputs, ListBase *nodes);
|
2019-01-29 07:46:25 +11:00
|
|
|
void GPU_nodes_get_vertex_attrs(ListBase *nodes, struct GPUVertAttrLayers *attrs);
|
2018-03-05 00:54:31 +01:00
|
|
|
void GPU_nodes_prune(ListBase *nodes, struct GPUNodeLink *outlink);
|
|
|
|
|
2018-08-02 18:31:38 +02:00
|
|
|
void GPU_pass_compile(GPUPass *pass, const char *shname);
|
2018-03-11 23:43:09 +01:00
|
|
|
void GPU_pass_release(GPUPass *pass);
|
2016-07-27 10:59:09 +02:00
|
|
|
void GPU_pass_free_nodes(ListBase *nodes);
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
|
2018-03-11 23:43:09 +01:00
|
|
|
void GPU_inputs_free(ListBase *inputs);
|
|
|
|
|
2014-10-07 15:46:19 -05:00
|
|
|
void gpu_codegen_init(void);
|
|
|
|
void gpu_codegen_exit(void);
|
2011-12-23 07:10:01 +00:00
|
|
|
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
/* Material calls */
|
|
|
|
|
2019-01-23 14:15:43 +11:00
|
|
|
const char *GPU_builtin_name(eGPUBuiltin builtin);
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
void gpu_material_add_node(struct GPUMaterial *material, struct GPUNode *node);
|
2018-08-10 15:13:39 +02:00
|
|
|
struct GPUTexture **gpu_material_ramp_texture_row_set(GPUMaterial *mat, int size, float *pixels, float *row);
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
|
|
|
|
#endif
|