I need a frame looking like the image below in beamer. The 3rd column will have multirow text with an equation. There are no horizontal lines, neither do I need the boxes around each of the columns.

I tried \subfloat and \minipage. With \subfloat the text doesn't show up and with \minipage the images are placed one over other and the text is not wrapped.
\begin{tabular}{ccc}
\begin{minipage}{0.45\textwidth}
\includegraphics[scale=0.46]{images/fig1}
\end{minipage}
\pause
&
\begin{minipage}{0.1\textwidth}
\includegraphics[scale=0.46]{images/fig2}
\end{minipage}
\pause
&
\begin{minipage}{0.45\textwidth}
\textbf{Title} \newline
text1 \newline
text2 \newline
text3 \newline
\end{minipage}
\end{tabular}
How can I go about it?
