Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions Source/WebCore/platform/graphics/texmap/TextureMapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1356,11 +1356,6 @@ void TextureMapper::setDepthRange(double zNear, double zFar)
updateProjectionMatrix();
}

std::pair<double, double> TextureMapper::depthRange() const
{
return { data().zNear, data().zFar };
}

void TextureMapper::updateProjectionMatrix()
{
bool flipY;
Expand Down
1 change: 0 additions & 1 deletion Source/WebCore/platform/graphics/texmap/TextureMapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ class TextureMapper {
IntRect clipBounds();
IntSize maxTextureSize() const;
void setDepthRange(double zNear, double zFar);
std::pair<double, double> depthRange() const;
void setMaskMode(bool m) { m_isMaskMode = m; }
void setWrapMode(WrapMode m) { m_wrapMode = m; }
void setPatternTransform(const TransformationMatrix& p) { m_patternTransform = p; }
Expand Down
Loading