42 lines
1.4 KiB
C
42 lines
1.4 KiB
C
/*
|
|
* Copyright 2016 Paul Gofman
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include "wine/port.h"
|
|
|
|
#include "d3dx9_private.h"
|
|
|
|
#include <float.h>
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3dx);
|
|
|
|
HRESULT d3dx_create_param_eval(struct d3dx9_base_effect *base_effect, void *byte_code, unsigned int byte_code_size,
|
|
D3DXPARAMETER_TYPE type, struct d3dx_param_eval **peval_out)
|
|
{
|
|
FIXME("stub, base_effect %p, byte_code %p, byte_code_size %u, type %u, peval_out %p.\n",
|
|
base_effect, byte_code, byte_code_size, type, peval_out);
|
|
|
|
*peval_out = NULL;
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
void d3dx_free_param_eval(struct d3dx_param_eval *peval)
|
|
{
|
|
FIXME("stub, peval %p.\n", peval);
|
|
}
|