This source file includes following definitions.
- create
- m_infoValid
- deleteObjectImpl
- numActiveAttribLocations
- getActiveAttribLocation
- isUsingVertexAttrib0
- linkStatus
- setLinkStatus
- increaseLinkCount
- getAttachedShader
- attachShader
- detachShader
- cacheActiveAttribLocations
- cacheInfoIfNeeded
#include "config.h"
#include "core/html/canvas/WebGLProgram.h"
#include "core/html/canvas/WebGLRenderingContextBase.h"
namespace WebCore {
PassRefPtr<WebGLProgram> WebGLProgram::create(WebGLRenderingContextBase* ctx)
{
return adoptRef(new WebGLProgram(ctx));
}
WebGLProgram::WebGLProgram(WebGLRenderingContextBase* ctx)
: WebGLSharedObject(ctx)
, m_linkStatus(false)
, m_linkCount(0)
, m_infoValid(true)
{
ScriptWrappable::init(this);
setObject(ctx->webGraphicsContext3D()->createProgram());
}
WebGLProgram::~WebGLProgram()
{
deleteObject(0);
}
void WebGLProgram::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject obj)
{
context3d->deleteProgram(obj);
if (m_vertexShader) {
m_vertexShader->onDetached(context3d);
m_vertexShader = nullptr;
}
if (m_fragmentShader) {
m_fragmentShader->onDetached(context3d);
m_fragmentShader = nullptr;
}
}
unsigned WebGLProgram::numActiveAttribLocations()
{
cacheInfoIfNeeded();
return m_activeAttribLocations.size();
}
GLint WebGLProgram::getActiveAttribLocation(GLuint index)
{
cacheInfoIfNeeded();
if (index >= numActiveAttribLocations())
return -1;
return m_activeAttribLocations[index];
}
bool WebGLProgram::isUsingVertexAttrib0()
{
cacheInfoIfNeeded();
for (unsigned ii = 0; ii < numActiveAttribLocations(); ++ii) {
if (!getActiveAttribLocation(ii))
return true;
}
return false;
}
bool WebGLProgram::linkStatus()
{
cacheInfoIfNeeded();
return m_linkStatus;
}
void WebGLProgram::setLinkStatus(bool status)
{
cacheInfoIfNeeded();
m_linkStatus = status;
}
void WebGLProgram::increaseLinkCount()
{
++m_linkCount;
m_infoValid = false;
}
WebGLShader* WebGLProgram::getAttachedShader(GLenum type)
{
switch (type) {
case GL_VERTEX_SHADER:
return m_vertexShader.get();
case GL_FRAGMENT_SHADER:
return m_fragmentShader.get();
default:
return 0;
}
}
bool WebGLProgram::attachShader(WebGLShader* shader)
{
if (!shader || !shader->object())
return false;
switch (shader->type()) {
case GL_VERTEX_SHADER:
if (m_vertexShader)
return false;
m_vertexShader = shader;
return true;
case GL_FRAGMENT_SHADER:
if (m_fragmentShader)
return false;
m_fragmentShader = shader;
return true;
default:
return false;
}
}
bool WebGLProgram::detachShader(WebGLShader* shader)
{
if (!shader || !shader->object())
return false;
switch (shader->type()) {
case GL_VERTEX_SHADER:
if (m_vertexShader != shader)
return false;
m_vertexShader = nullptr;
return true;
case GL_FRAGMENT_SHADER:
if (m_fragmentShader != shader)
return false;
m_fragmentShader = nullptr;
return true;
default:
return false;
}
}
void WebGLProgram::cacheActiveAttribLocations(blink::WebGraphicsContext3D* context3d)
{
m_activeAttribLocations.clear();
GLint numAttribs = 0;
context3d->getProgramiv(object(), GL_ACTIVE_ATTRIBUTES, &numAttribs);
m_activeAttribLocations.resize(static_cast<size_t>(numAttribs));
for (int i = 0; i < numAttribs; ++i) {
blink::WebGraphicsContext3D::ActiveInfo info;
context3d->getActiveAttrib(object(), i, info);
m_activeAttribLocations[i] = context3d->getAttribLocation(object(), info.name.utf8().data());
}
}
void WebGLProgram::cacheInfoIfNeeded()
{
if (m_infoValid)
return;
if (!object())
return;
blink::WebGraphicsContext3D* context = getAWebGraphicsContext3D();
if (!context)
return;
GLint linkStatus = 0;
context->getProgramiv(object(), GL_LINK_STATUS, &linkStatus);
m_linkStatus = linkStatus;
if (m_linkStatus)
cacheActiveAttribLocations(context);
m_infoValid = true;
}
}