2009-05-22 14:03:28 -07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "rsContext.h"
|
|
|
|
#include "rsProgram.h"
|
|
|
|
|
|
|
|
using namespace android;
|
|
|
|
using namespace android::renderscript;
|
|
|
|
|
|
|
|
|
2009-09-25 14:51:22 -07:00
|
|
|
Program::Program(Context *rsc, Element *in, Element *out) : ObjectBase(rsc)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
mElementIn.set(in);
|
|
|
|
mElementOut.set(out);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Program::~Program()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-05 13:57:03 -07:00
|
|
|
void Program::bindAllocation(Allocation *alloc)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
|
|
|
mConstants.set(alloc);
|
|
|
|
mDirty = true;
|
|
|
|
}
|
|
|
|
|
2009-08-05 13:57:03 -07:00
|
|
|
void Program::checkUpdatedAllocation(const Allocation *alloc)
|
|
|
|
{
|
|
|
|
if (mConstants.get() == alloc) {
|
|
|
|
mDirty = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|