mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-10 02:42:52 +02:00
fix materialcachescriptinginterface
This commit is contained in:
parent
1e100a672e
commit
deb5aacfad
3 changed files with 7 additions and 9 deletions
|
@ -106,7 +106,7 @@
|
||||||
#include <MessagesClient.h>
|
#include <MessagesClient.h>
|
||||||
#include <hfm/ModelFormatRegistry.h>
|
#include <hfm/ModelFormatRegistry.h>
|
||||||
#include <model-networking/ModelCacheScriptingInterface.h>
|
#include <model-networking/ModelCacheScriptingInterface.h>
|
||||||
#include <material-networking/MaterialCacheScriptingInterface.h>
|
#include <procedural/MaterialCacheScriptingInterface.h>
|
||||||
#include <material-networking/TextureCacheScriptingInterface.h>
|
#include <material-networking/TextureCacheScriptingInterface.h>
|
||||||
#include <ModelEntityItem.h>
|
#include <ModelEntityItem.h>
|
||||||
#include <NetworkAccessManager.h>
|
#include <NetworkAccessManager.h>
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
//
|
//
|
||||||
// MaterialCacheScriptingInterface.cpp
|
// MaterialCacheScriptingInterface.cpp
|
||||||
// libraries/mmodel-networking/src/model-networking
|
|
||||||
//
|
//
|
||||||
// Created by Sam Gateau on 17 September 2019.
|
// Created by Sam Gateau on 17 September 2019.
|
||||||
// Copyright 2019 High Fidelity, Inc.
|
// Copyright 2019 High Fidelity, Inc.
|
|
@ -1,6 +1,5 @@
|
||||||
//
|
//
|
||||||
// MaterialCacheScriptingInterface.h
|
// ProceduralMaterialCacheScriptingInterface.h
|
||||||
// libraries/material-networking/src/material-networking
|
|
||||||
//
|
//
|
||||||
// Created by Sam Gateau on 17 September 2019.
|
// Created by Sam Gateau on 17 September 2019.
|
||||||
// Copyright 2019 High Fidelity, Inc.
|
// Copyright 2019 High Fidelity, Inc.
|
||||||
|
@ -10,14 +9,14 @@
|
||||||
//
|
//
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#ifndef hifi_MaterialCacheScriptingInterface_h
|
#ifndef hifi_ProceduralMaterialCacheScriptingInterface_h
|
||||||
#define hifi_MaterialCacheScriptingInterface_h
|
#define hifi_ProceduralMaterialCacheScriptingInterface_h
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
|
||||||
#include <ResourceCache.h>
|
#include <ResourceCache.h>
|
||||||
|
|
||||||
#include "MaterialCache.h"
|
#include "ProceduralMaterialCache.h"
|
||||||
|
|
||||||
class MaterialCacheScriptingInterface : public ScriptableResourceCache, public Dependency {
|
class MaterialCacheScriptingInterface : public ScriptableResourceCache, public Dependency {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
@ -27,7 +26,7 @@ class MaterialCacheScriptingInterface : public ScriptableResourceCache, public D
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* The <code>TextureCache</code> API manages texture cache resources.
|
* The <code>TextureCache</code> API manages texture cache resources.
|
||||||
*
|
*
|
||||||
* @namespace TextureCache
|
* @namespace MaterialCache
|
||||||
*
|
*
|
||||||
* @hifi-interface
|
* @hifi-interface
|
||||||
* @hifi-client-entity
|
* @hifi-client-entity
|
||||||
|
@ -48,4 +47,4 @@ public:
|
||||||
MaterialCacheScriptingInterface();
|
MaterialCacheScriptingInterface();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // hifi_MaterialCacheScriptingInterface_h
|
#endif // hifi_ProceduralMaterialCacheScriptingInterface_h
|
Loading…
Reference in a new issue