Get the latest Blender, older versions, or experimental builds.
Stay up-to-date with the new features in the latest Blender releases.
Access production assets and knowledge from the open movies.
Documentation on the usage and features in Blender.
Latest development updates, by Blender developers.
Guidelines, release notes and development docs.
A platform to collect and share results of the Blender Benchmark.
The yearly event that brings the community together.
Support core development with a monthly contribution.
Perform a single donation with more payment options available.
#include "DNA_customdata_types.h"
#include "DNA_material_types.h"
#include "BL_BlenderShader.h"
#include "BL_Material.h"
#ifdef BLENDER_GLSL
#include "GPU_extensions.h"
#include "GPU_material.h"
#endif
#include "RAS_MeshObject.h"
#include "RAS_IRasterizer.h"
const bool BL_BlenderShader::Ok()const
{
return (mGPUMat != 0);
#else
return 0;
}
BL_BlenderShader::BL_BlenderShader(struct Material *ma, int lightlayer)
:
mGPUMat(0),
mBound(false),
mLightLayer(lightlayer)
if(ma) {
GPU_material_from_blender(ma);
mGPUMat = ma->gpumaterial;
BL_BlenderShader::~BL_BlenderShader()
if(mGPUMat) {
GPU_material_unbind(mGPUMat);
mGPUMat = 0;
void BL_BlenderShader::SetProg(bool enable)
if(enable) {
GPU_material_bind(mGPUMat, mLightLayer);
mBound = true;
else {
mBound = false;
int BL_BlenderShader::GetAttribNum()
GPUVertexAttribs attribs;
int i, enabled = 0;
if(!mGPUMat)
return enabled;
GPU_material_vertex_attributes(mGPUMat, &attribs);
for(i = 0; i < attribs.totlayer; i++)
if(attribs.layer[i].glindex+1 > enabled)
enabled= attribs.layer[i].glindex+1;
if(enabled > BL_MAX_ATTRIB)
enabled = BL_MAX_ATTRIB;
void BL_BlenderShader::SetAttribs(RAS_IRasterizer* ras, const BL_Material *mat)
int i, attrib_num;
ras->SetAttribNum(0);
return;
if(ras->GetDrawingMode() == RAS_IRasterizer::KX_TEXTURED) {
attrib_num = GetAttribNum();
ras->SetTexCoordNum(0);
ras->SetAttribNum(attrib_num);
for(i=0; i<attrib_num; i++)
ras->SetAttrib(RAS_IRasterizer::RAS_TEXCO_DISABLE, i);
for(i = 0; i < attribs.totlayer; i++) {
if(attribs.layer[i].glindex > attrib_num)
continue;
if(attribs.layer[i].type == CD_MTFACE) {
if(!mat->uvName.IsEmpty() && strcmp(mat->uvName.ReadPtr(), attribs.layer[i].name) == 0)
ras->SetAttrib(RAS_IRasterizer::RAS_TEXCO_UV1, attribs.layer[i].glindex);
else if(!mat->uv2Name.IsEmpty() && strcmp(mat->uv2Name.ReadPtr(), attribs.layer[i].name) == 0)
ras->SetAttrib(RAS_IRasterizer::RAS_TEXCO_UV2, attribs.layer[i].glindex);
else
else if(attribs.layer[i].type == CD_TANGENT)
ras->SetAttrib(RAS_IRasterizer::RAS_TEXTANGENT, attribs.layer[i].glindex);
else if(attribs.layer[i].type == CD_ORCO)
ras->SetAttrib(RAS_IRasterizer::RAS_TEXCO_ORCO, attribs.layer[i].glindex);
else if(attribs.layer[i].type == CD_NORMAL)
ras->SetAttrib(RAS_IRasterizer::RAS_TEXCO_NORM, attribs.layer[i].glindex);
else if(attribs.layer[i].type == CD_MCOL)
ras->SetAttrib(RAS_IRasterizer::RAS_TEXCO_VCOL, attribs.layer[i].glindex);
ras->SetAttrib(RAS_IRasterizer::RAS_TEXCO_DISABLE, attribs.layer[i].glindex);
ras->EnableTextures(true);
ras->EnableTextures(false);
void BL_BlenderShader::Update( const KX_MeshSlot & ms, RAS_IRasterizer* rasty )
float obmat[4][4], viewmat[4][4], viewinvmat[4][4];
if(!mGPUMat || !mBound)
MT_Matrix4x4 model;
model.setValue(ms.m_OpenGLMatrix);
MT_Matrix4x4 view;
rasty->GetViewMatrix(view);
model.getValue((float*)obmat);
view.getValue((float*)viewmat);
view.invert();
view.getValue((float*)viewinvmat);
GPU_material_bind_uniforms(mGPUMat, obmat, viewmat, viewinvmat);
bool BL_BlenderShader::Equals(BL_BlenderShader *blshader)
/* to avoid unneeded state switches */
return (blshader && mGPUMat == blshader->mGPUMat && mLightLayer == blshader->mLightLayer);
return true;
// eof