Browse Source

GL: remove a redundant ifndef, it's already in the outer scope.

pull/638/head
Vladimír Vondruš 2 years ago
parent
commit
fadc15989c
  1. 2
      src/Magnum/GL/Implementation/BufferState.cpp

2
src/Magnum/GL/Implementation/BufferState.cpp

@ -105,9 +105,7 @@ BufferState::BufferState(Context& context, Containers::StaticArrayView<Implement
createImplementation = &Buffer::createImplementationDSA;
copyImplementation = &Buffer::copyImplementationDSA;
#ifndef MAGNUM_TARGET_GLES
storageImplementation = &Buffer::storageImplementationDSA;
#endif
getParameterImplementation = &Buffer::getParameterImplementationDSA;
getSubDataImplementation = &Buffer::getSubDataImplementationDSA;
dataImplementation = &Buffer::dataImplementationDSA;

Loading…
Cancel
Save