Skip to content

Commit

Permalink
ShepardZoomDemo.m: Fix a deprecation warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
kleinerm committed Oct 25, 2023
1 parent 61b8524 commit 7d7a3c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@

% For quick texture mipmap creation, the hardware needs to support
% framebuffer object extensions...
if ~isempty(findstr(glGetString(GL.EXTENSIONS), '_framebuffer_object'))
if ~isempty(strfind(glGetString(GL.EXTENSIONS), '_framebuffer_object'))
% Automatic, fast, hardware based creation of mipmap texture resolution
% pyramids supported on this system. Use it to quickly create the
% texture mipmap object:
Expand Down

0 comments on commit 7d7a3c1

Please sign in to comment.